summaryrefslogtreecommitdiff
path: root/oryxc
diff options
context:
space:
mode:
Diffstat (limited to 'oryxc')
-rw-r--r--oryxc/src/parser.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/oryxc/src/parser.rs b/oryxc/src/parser.rs
index dc3e865..fcc5a76 100644
--- a/oryxc/src/parser.rs
+++ b/oryxc/src/parser.rs
@@ -305,7 +305,7 @@ impl<'a> Parser<'a> {
t if t.exprp() => {
/* Här kan vi antigen ha ett uttryck (t.ex. ‘foo()’)
* eller en uttyrckslista som används i en tilldelning
- * (t.ex. ‘x, y = 69 420’) */
+ * (t.ex. ‘x, y = 69, 420’) */
match self.scratch_guard(|p| {
let lhs = p.parse_expr_list()?;