Skip to content

Commit 7aad0ad

Browse files
committed
Update links to luau.org
1 parent a3cd25d commit 7aad0ad

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Started as `rlua` fork, `mlua` supports Lua 5.4, 5.3, 5.2, 5.1 (including LuaJIT
3131
WebAssembly (WASM) is supported through `wasm32-unknown-emscripten` target for all Lua versions excluding JIT.
3232

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

3636
## Usage
3737

@@ -291,7 +291,7 @@ Please check the [Luau Sandboxing] page if you are interested in running untrust
291291

292292
`mlua` provides `Lua::sandbox` method for enabling sandbox mode (Luau only).
293293

294-
[Luau Sandboxing]: https://luau-lang.org/sandbox
294+
[Luau Sandboxing]: https://luau.org/sandbox
295295

296296
## License
297297

src/state.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1028,7 +1028,7 @@ impl Lua {
10281028
///
10291029
/// Requires `feature = "luau"`
10301030
///
1031-
/// [buffer]: https://luau-lang.org/library#buffer-library
1031+
/// [buffer]: https://luau.org/library#buffer-library
10321032
#[cfg(any(feature = "luau", doc))]
10331033
#[cfg_attr(docsrs, doc(cfg(feature = "luau")))]
10341034
pub fn create_buffer(&self, buf: impl AsRef<[u8]>) -> Result<Buffer> {

src/stdlib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,12 @@ impl StdLib {
4343
/// [`package`](https://www.lua.org/manual/5.4/manual.html#6.3) library
4444
pub const PACKAGE: StdLib = StdLib(1 << 8);
4545

46-
/// [`buffer`](https://luau-lang.org/library#buffer-library) library
46+
/// [`buffer`](https://luau.org/library#buffer-library) library
4747
#[cfg(any(feature = "luau", doc))]
4848
#[cfg_attr(docsrs, doc(cfg(feature = "luau")))]
4949
pub const BUFFER: StdLib = StdLib(1 << 9);
5050

51-
/// [`vector`](https://luau-lang.org/library#vector-library) library
51+
/// [`vector`](https://luau.org/library#vector-library) library
5252
#[cfg(any(feature = "luau", doc))]
5353
#[cfg_attr(docsrs, doc(cfg(feature = "luau")))]
5454
pub const VECTOR: StdLib = StdLib(1 << 10);

0 commit comments

Comments
 (0)