summaryrefslogtreecommitdiff
path: root/src/parsing.rs
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2019-03-30 16:58:45 +0100
committerLaurenz <laurmaedje@gmail.com>2019-03-30 16:58:45 +0100
commitdb96ecae94a7c06d04528e8d4461ebca86d2d249 (patch)
tree9f1bdbaa65b424ef522dadda02bfa4826acfc836 /src/parsing.rs
parentf683bba4004cc07f9ac91d5d99a6bab76f335dba (diff)
Move some types into better places 🧱
Diffstat (limited to 'src/parsing.rs')
-rw-r--r--src/parsing.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/parsing.rs b/src/parsing.rs
index 2737fde4..92eaae75 100644
--- a/src/parsing.rs
+++ b/src/parsing.rs
@@ -1,4 +1,4 @@
-//! Parsing of source code into tokens and syntax trees.
+//! Tokenization and parsing of source code into syntax trees.
use std::fmt;
use std::iter::Peekable;
@@ -475,7 +475,6 @@ mod token_tests {
}
}
-
#[cfg(test)]
mod parse_tests {
use super::*;