summaryrefslogtreecommitdiff
path: root/docs/PLUGINS.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/PLUGINS.md')
-rw-r--r--docs/PLUGINS.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/PLUGINS.md b/docs/PLUGINS.md
index ea21485..5e78d29 100644
--- a/docs/PLUGINS.md
+++ b/docs/PLUGINS.md
@@ -13,7 +13,7 @@ import plugin "regex" as re
// or simple: import plugin "regex" (uses "regex" as identifier)
fn main() {
- var valid = re! { ^[a-z]+$ };
+ let valid = re! { ^[a-z]+$ };
}
```