summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/shell.pest2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shell.pest b/src/shell.pest
index 7744873..e61b5bd 100644
--- a/src/shell.pest
+++ b/src/shell.pest
@@ -6,7 +6,7 @@ bareword = @{ bareword_char+ }
single_string = @{ single_string_char+ }
double_string = @{ double_string_char+ }
-word = {
+word = ${
bareword |
"'" ~ single_string ~ "'" |
"\"" ~ double_string ~ "\""