Skip to content

Commit 1976b8e

Browse files
committed
Update multiline docstrings
1 parent e1a609a commit 1976b8e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/MultilineStrings.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ const DEFAULT_STYLE = :folded
66
const DEFAULT_CHOMP = :strip
77

88
"""
9-
multiline(str, style=$(repr(DEFAULT_STYLE)), chomp=$(repr(DEFAULT_CHOMP))) -> AbstractString
9+
multiline(str; style=$(repr(DEFAULT_STYLE)), chomp=$(repr(DEFAULT_CHOMP))) -> AbstractString
1010
11-
Create a multiline string according to the provided `style` and `chomp`. Works similarly to
12-
YAML multiline strings (also known as block scalars).
11+
Manipulate a multiline string according to the provided `style` and `chomp`. Works similarly
12+
to YAML multiline strings (also known as block scalars).
1313
1414
# Arguments
1515
- `str::AbstractString`: The multiline string to be processed
@@ -26,7 +26,7 @@ end
2626
"""
2727
multiline(str, indicators) -> AbstractString
2828
29-
Revise a multiline string according to the provided style and chomp encoded in the
29+
Manipulate a multiline string according to the provided style and chomp encoded in the
3030
`indicators` string.
3131
3232
# Arguments

0 commit comments

Comments
 (0)