aboutsummaryrefslogtreecommitdiffstats
path: root/doc/src/guide/parsers.asciidoc
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2018-08-01 15:07:37 +0200
committerLoïc Hoguin <[email protected]>2018-08-01 15:07:37 +0200
commit7e111201f621243101fe588ce7927757402586cb (patch)
treeab17d44c9d413c000e7ad2656bc37cd69d67cb15 /doc/src/guide/parsers.asciidoc
parent3ed2647ed212f95247b7769188d935f8415f8aa9 (diff)
downloadranch-7e111201f621243101fe588ce7927757402586cb.tar.gz
ranch-7e111201f621243101fe588ce7927757402586cb.tar.bz2
ranch-7e111201f621243101fe588ce7927757402586cb.zip
Use fn/1,2 instead of fn/{1,2} everywhere
Diffstat (limited to 'doc/src/guide/parsers.asciidoc')
-rw-r--r--doc/src/guide/parsers.asciidoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/guide/parsers.asciidoc b/doc/src/guide/parsers.asciidoc
index 9eacbfa..7a9c5a5 100644
--- a/doc/src/guide/parsers.asciidoc
+++ b/doc/src/guide/parsers.asciidoc
@@ -21,7 +21,7 @@ will only cover the first two.
Text protocols are generally line based. This means that we can't
do anything with them until we receive the full line.
-A simple way to get a full line is to use `binary:split/{2,3}`.
+A simple way to get a full line is to use `binary:split/2,3`.
.Using binary:split/2 to get a line of input