Skip to content

Commit

Permalink
remove inline for static property
Browse files Browse the repository at this point in the history
  • Loading branch information
AngelMunoz committed Feb 3, 2024
1 parent ca540bf commit e0ee411
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Hox/DSL.fs
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 +480,7 @@ type NodeDsl =
static member inline fragment(nodes: IAsyncEnumerable<Node>) =
AsyncSeqNode nodes

static member inline empty = Fragment(LinkedList())
static member empty = Fragment(LinkedList())

static member inline attribute(name: string, value: string) =
Attribute { name = name; value = value }
Expand Down
2 changes: 1 addition & 1 deletion src/Hox/DSL.fsi
Original file line number Diff line number Diff line change
Expand Up @@ -725,7 +725,7 @@ type NodeDsl =
/// Creates an empty node (shorthand for `fragment []`)
/// </summary>
/// <returns>A new node</returns>
static member inline empty: Node
static member empty: Node

/// <summary>
/// Creates a new attribute node, this is meant to be added to nodes using the
Expand Down

0 comments on commit e0ee411

Please sign in to comment.