Update spelling check

This commit is contained in:
Alex Orlenko
2026-01-23 15:37:18 +00:00
parent 93617eef4e
commit 7fb7e8685f
5 changed files with 22 additions and 9 deletions
+2 -2
View File
@@ -313,8 +313,8 @@ mod tests {
fn test_error_cases() {
assert!(parse("").is_err());
assert!(parse("nul").is_err());
assert!(parse("tru").is_err());
assert!(parse("fals").is_err());
assert!(parse("tru").is_err()); // typos:ignore
assert!(parse("fals").is_err()); // typos:ignore
assert!(parse(r#""unterminated"#).is_err());
assert!(parse("[1,2,]").is_err());
assert!(parse(r#"{"key""#).is_err());
+1 -1
View File
@@ -2150,7 +2150,7 @@ impl Lua {
/// Suspends the current async function, returning the provided arguments to caller.
///
/// This function is similar to [`coroutine.yield`] but allow yeilding Rust functions
/// This function is similar to [`coroutine.yield`] but allow yielding Rust functions
/// and passing values to the caller.
/// Please note that you cannot cross [`Thread`] boundaries (e.g. calling `yield_with` on one
/// thread and resuming on another).