aboutsummaryrefslogtreecommitdiffstats
path: root/parser/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'parser/src/lib.rs')
-rw-r--r--parser/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/parser/src/lib.rs b/parser/src/lib.rs
index 23e97c7..4f1b8dd 100644
--- a/parser/src/lib.rs
+++ b/parser/src/lib.rs
@@ -22,7 +22,7 @@ pub fn parse_only(source: &str) -> Result<Document, Error> {
convert_document(pairs)
}
-/// Parse into a document tree and resolve sections and references.
+/// Parse into a document tree and resolve sections and references.
pub fn parse(source: &str) -> Result<Document, Error> {
parse_only(source).map(resolve_references)
}