diff options
author | Titus Wormer <tituswormer@gmail.com> | 2023-04-22 10:04:20 +0200 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2023-04-22 10:06:12 +0200 |
commit | 4dbac89b1d9392e96109704c2d21c68e40938317 (patch) | |
tree | 964514925fc0f6b88a121cac91a88b30a014d502 /src | |
parent | 66c6c21f7349ce6036673443afc2c1aa640682db (diff) | |
download | markdown-rs-4dbac89b1d9392e96109704c2d21c68e40938317.tar.gz markdown-rs-4dbac89b1d9392e96109704c2d21c68e40938317.tar.bz2 markdown-rs-4dbac89b1d9392e96109704c2d21c68e40938317.zip |
Fix typo in docs
Diffstat (limited to 'src')
-rw-r--r-- | src/construct/raw_flow.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/construct/raw_flow.rs b/src/construct/raw_flow.rs index 105a031..549c40d 100644 --- a/src/construct/raw_flow.rs +++ b/src/construct/raw_flow.rs @@ -10,7 +10,7 @@ //! raw_flow ::= fence_open *( eol *byte ) [ eol fence_close ] //! //! ; Restriction: math (flow) does not support the `info` part. -//! fence_open ::= sequence [1*space_or_tab info [1*space_or_tab meta]] *space_or_tab +//! fence_open ::= sequence [*space_or_tab info [1*space_or_tab meta]] *space_or_tab //! ; Restriction: the number of markers in the closing fence sequence must be //! ; equal to or greater than the number of markers in the opening fence //! ; sequence. |