Skip to content

Commit 5230007

Browse files
committed
Add docs for parsing.rs
1 parent 480274a commit 5230007

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/parsing.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ fn symbol() -> impl Parser<char, String, Error = Simple<char>> {
1919
.labelled("symbol")
2020
}
2121

22+
/// Parse a series of s-expressions.
2223
pub fn parser() -> impl Parser<char, Vec<Atom>, Error = Simple<char>> {
2324
let open_paren = just('(').labelled("opening parenthesis").padded();
2425
let close_paren = just(')').labelled("closing parenthesis").padded();

0 commit comments

Comments
 (0)