summaryrefslogtreecommitdiff
path: root/docs/PLUGINS.md
diff options
context:
space:
mode:
authorSteven <burnett@posteo.de>2026-01-25 23:54:29 +0000
committerSteven <burnett@posteo.de>2026-01-25 23:54:29 +0000
commit97d0583c92c733aa8497a99f5267d50151f6e965 (patch)
tree825c006266bf3a57ab4dbb2d3d7df2f9d9dcc21d /docs/PLUGINS.md
parenta5e8a3734fd850de53ad917d55ee5c2e73f39190 (diff)
fix(docs): replace remaining var references with let
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]+$ };
}
```