Skip to content

Commit e706ae4

Browse files
committed
Remove Roblox from references to Luau
Closes #537
1 parent ae7cdcb commit e706ae4

File tree

9 files changed

+13
-13
lines changed

9 files changed

+13
-13
lines changed

Diff for: CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ Other:
304304

305305
## v0.8.0
306306
Changes since 0.7.4
307-
- Roblox Luau support
307+
- Luau support
308308
- Removed C glue
309309
- Added async support to `__index` and `__newindex` metamethods
310310
- Added `Function::info()` to get information about functions (#149).
@@ -354,7 +354,7 @@ Breaking changes:
354354

355355
## v0.8.0-beta.1
356356

357-
- Roblox Luau support
357+
- Luau support
358358
- Refactored ffi module. C glue is no longer required
359359
- Added async support to `__index` and `__newindex` metamethods
360360

Diff for: Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ keywords = ["lua", "luajit", "luau", "async", "scripting"]
1111
categories = ["api-bindings", "asynchronous"]
1212
license = "MIT"
1313
description = """
14-
High level bindings to Lua 5.4/5.3/5.2/5.1 (including LuaJIT) and Roblox Luau
14+
High level bindings to Lua 5.4/5.3/5.2/5.1 (including LuaJIT) and Luau
1515
with async/await features and support of writing native Lua modules in Rust.
1616
"""
1717

Diff for: README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@
2626
`mlua` is bindings to [Lua](https://www.lua.org) programming language for Rust with a goal to provide
2727
_safe_ (as far as it's possible), high level, easy to use, practical and flexible API.
2828

29-
Started as `rlua` fork, `mlua` supports Lua 5.4, 5.3, 5.2, 5.1 (including LuaJIT) and [Roblox Luau] and allows to write native Lua modules in Rust as well as use Lua in a standalone mode.
29+
Started as `rlua` fork, `mlua` supports Lua 5.4, 5.3, 5.2, 5.1 (including LuaJIT) and [Luau] and allows to write native Lua modules in Rust as well as use Lua in a standalone mode.
3030

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

3333
WebAssembly (WASM) is supported through `wasm32-unknown-emscripten` target for all Lua versions excluding JIT.
3434

3535
[GitHub Actions]: https://github.com/khvzak/mlua/actions
36-
[Roblox Luau]: https://luau.org
36+
[Luau]: https://luau.org
3737

3838
## Usage
3939

@@ -66,7 +66,7 @@ Below is a list of the available feature flags. By default `mlua` does not enabl
6666
[5.2]: https://www.lua.org/manual/5.2/manual.html
6767
[5.1]: https://www.lua.org/manual/5.1/manual.html
6868
[LuaJIT]: https://luajit.org/
69-
[Luau]: https://github.com/Roblox/luau
69+
[Luau]: https://github.com/luau-lang/luau
7070
[lua-src]: https://github.com/khvzak/lua-src-rs
7171
[luajit-src]: https://github.com/khvzak/luajit-src-rs
7272
[tokio]: https://github.com/tokio-rs/tokio

Diff for: mlua-sys/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ license = "MIT"
1212
links = "lua"
1313
build = "build/main.rs"
1414
description = """
15-
Low level (FFI) bindings to Lua 5.4/5.3/5.2/5.1 (including LuaJIT) and Roblox Luau
15+
Low level (FFI) bindings to Lua 5.4/5.3/5.2/5.1 (including LuaJIT) and Luau
1616
"""
1717

1818
[package.metadata.docs.rs]

Diff for: mlua-sys/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# mlua-sys
22

3-
Low level (FFI) bindings to Lua 5.4/5.3/5.2/5.1 (including LuaJIT) and Roblox [Luau].
3+
Low level (FFI) bindings to Lua 5.4/5.3/5.2/5.1 (including LuaJIT) and [Luau].
44

55
Intended to be consumed by the [mlua] crate.
66

7-
[Luau]: https://github.com/Roblox/luau
7+
[Luau]: https://github.com/luau-lang/luau
88
[mlua]: https://crates.io/crates/mlua

Diff for: mlua-sys/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//! Low level bindings to Lua 5.4/5.3/5.2/5.1 (including LuaJIT) and Roblox Luau.
1+
//! Low level bindings to Lua 5.4/5.3/5.2/5.1 (including LuaJIT) and Luau.
22
33
#![allow(non_camel_case_types, non_snake_case, dead_code)]
44
#![allow(clippy::missing_safety_doc)]

Diff for: mlua-sys/src/luau/compat.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//! MLua compatibility layer for Roblox Luau.
1+
//! MLua compatibility layer for Luau.
22
//!
33
//! Based on github.com/keplerproject/lua-compat-5.3
44

Diff for: src/state/util.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ where
5151
}
5252

5353
// We need to check stack for Luau in case when callback is called from interrupt
54-
// See https://github.com/Roblox/luau/issues/446 and mlua #142 and #153
54+
// See https://github.com/luau-lang/luau/issues/446 and mlua #142 and #153
5555
#[cfg(feature = "luau")]
5656
ffi::lua_rawcheckstack(state, 2);
5757
// Place it to the beginning of the stack

Diff for: src/util/error.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ where
262262

263263
pub(crate) unsafe extern "C-unwind" fn error_traceback(state: *mut ffi::lua_State) -> c_int {
264264
// Luau calls error handler for memory allocation errors, skip it
265-
// See https://github.com/Roblox/luau/issues/880
265+
// See https://github.com/luau-lang/luau/issues/880
266266
#[cfg(feature = "luau")]
267267
if MemoryState::limit_reached(state) {
268268
return 0;

0 commit comments

Comments
 (0)