Skip to content

Commit 537cc99

Browse files
authored
Copyedit English in README.md (#639)
1 parent 5d27cb9 commit 537cc99

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@
1717
[Benchmarks]: https://github.com/khvzak/script-bench-rs
1818
[FAQ]: FAQ.md
1919

20-
`mlua` is a set of bindings to the [Lua](https://www.lua.org) programming language for Rust with a goal to provide a
20+
`mlua` is a set of bindings to the [Lua](https://www.lua.org) programming language for Rust with a goal of providing a
2121
_safe_ (as much as possible), high level, easy to use, practical and flexible API.
2222

2323
Started as an `rlua` fork, `mlua` supports Lua 5.4, 5.3, 5.2, 5.1 (including LuaJIT) and [Luau] and allows writing native Lua modules in Rust as well as using Lua in a standalone mode.
2424

2525
`mlua` is tested on Windows/macOS/Linux including module mode in [GitHub Actions] on `x86_64` platforms and cross-compilation to `aarch64` (other targets are also supported).
2626

27-
WebAssembly (WASM) is supported through `wasm32-unknown-emscripten` target for all Lua/Luau versions excluding JIT.
27+
WebAssembly (WASM) is supported through the `wasm32-unknown-emscripten` target for all Lua/Luau versions excluding JIT.
2828

2929
[GitHub Actions]: https://github.com/mlua-rs/mlua/actions
3030
[Luau]: https://luau.org
@@ -33,7 +33,7 @@ WebAssembly (WASM) is supported through `wasm32-unknown-emscripten` target for a
3333

3434
### Feature flags
3535

36-
`mlua` uses feature flags to reduce the amount of dependencies and compiled code, and allow to choose only required set of features.
36+
`mlua` uses feature flags to reduce the number of dependencies and compiled code, and allow choosing only the required set of features.
3737
Below is a list of the available feature flags. By default `mlua` does not enable any features.
3838

3939
* `lua54`: enable Lua [5.4] support
@@ -270,7 +270,7 @@ remain usable after a user generated panic, and such panics should not break int
270270
leak Lua stack space. This is mostly important to safely use `mlua` types in Drop impls, as you should not be
271271
using panics for general error handling.
272272

273-
Below is a list of `mlua` behaviors that should be considered a bug.
273+
Below is a list of `mlua` behaviors that should be considered bugs.
274274
If you encounter them, a bug report would be very welcome:
275275

276276
+ If you can cause UB with `mlua` without typing the word "unsafe", this is a bug.

0 commit comments

Comments
 (0)