We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7bc72be commit 62f8482Copy full SHA for 62f8482
3 files changed
src/buffer.rs
@@ -25,7 +25,6 @@ impl Buffer {
25
}
26
27
/// Returns `true` if the buffer is empty.
28
- #[doc(hidden)]
29
pub fn is_empty(&self) -> bool {
30
self.len() == 0
31
src/thread.rs
@@ -472,7 +472,6 @@ impl Thread {
472
/// ```
473
#[cfg(any(feature = "luau", doc))]
474
#[cfg_attr(docsrs, doc(cfg(feature = "luau")))]
475
476
pub fn sandbox(&self) -> Result<()> {
477
let lua = self.0.lua.lock();
478
let state = lua.state();
src/vector.rs
@@ -38,7 +38,6 @@ impl Vector {
38
39
40
/// Creates a new vector with all components set to `0.0`.
41
42
pub const fn zero() -> Self {
43
Self([0.0; Self::SIZE])
44
0 commit comments