Skip to content

Commit a9e1913

Browse files
authored
fix: specify Lua == 5.1 in Neovim example (#5)
1 parent 162bf51 commit a9e1913

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/guides/neovim.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ In this guide, we'll learn how to make Lux execute code using Neovim as the Lua
88
## Ensuring Lua Version
99

1010
Neovim ships with a `luajit` interpreter, which is equivalent to Lua version `5.1`.
11-
In your `lux.toml`, ensure that you allow at least version `5.1`:
11+
In your `lux.toml`, ensure that you specify version `5.1`:
1212

1313
```toml title="lux.toml"
1414
package = "package-name"
1515
version = "0.1.0"
1616
# highlight-next-line
17-
lua = ">=5.1"
17+
lua = "==5.1"
1818

1919
...
2020
```

0 commit comments

Comments
 (0)