Skip to content

Commit

Permalink
Fix comment. (#98)
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmedcharles authored Dec 2, 2024
1 parent 5946986 commit 9f0e86a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/string.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ use crate::compiler::string_utils::{debug_utf8_lossy, display_utf8_lossy};
/// The Lua string type.
///
/// Unlike Rust strings, Lua strings may contain *arbitrary bytes*, and as such are not necessarily
// UTF-8.
/// UTF-8.
#[derive(Copy, Clone, Collect)]
#[collect(no_drop)]
pub struct String<'gc>(Gc<'gc, StringInner>);
Expand Down

0 comments on commit 9f0e86a

Please sign in to comment.