Skip to content

Commit

Permalink
Syntax hints: remove trailing space
Browse files Browse the repository at this point in the history
  • Loading branch information
hojberg committed Jul 25, 2024
1 parent a0947df commit f45bd6c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Code/Syntax/SyntaxSegmentHelp.elm
Original file line number Diff line number Diff line change
Expand Up @@ -217,13 +217,13 @@ abilityWhere =
help
[ text "Introduces an ability definition. The name of the ability follows the keyword and the operations that the ability can perform are listed as function signatures after the "
, inlineCode "where"
, text " keyword. "
, text " keyword."
]


abilityBraces : Html msg
abilityBraces =
help [ text "Defines the set of abilities that a function can perform. The abilities will appear in a comma-delimited list. " ]
help [ text "Defines the set of abilities that a function can perform. The abilities will appear in a comma-delimited list." ]


handleWith : Html msg
Expand Down Expand Up @@ -256,7 +256,7 @@ delayed =
, inlineCode "() -> a"
, text ". In a function body, "
, inlineCode "'"
, text " indicates that the term immediately to the right is delayed. "
, text " indicates that the term immediately to the right is delayed."
]


Expand Down

0 comments on commit f45bd6c

Please sign in to comment.