Skip to content

Commit 62f8482

Browse files
committed
Open some doc(hidden) functionality
1 parent 7bc72be commit 62f8482

File tree

3 files changed

+0
-3
lines changed

3 files changed

+0
-3
lines changed

src/buffer.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ impl Buffer {
2525
}
2626

2727
/// Returns `true` if the buffer is empty.
28-
#[doc(hidden)]
2928
pub fn is_empty(&self) -> bool {
3029
self.len() == 0
3130
}

src/thread.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -472,7 +472,6 @@ impl Thread {
472472
/// ```
473473
#[cfg(any(feature = "luau", doc))]
474474
#[cfg_attr(docsrs, doc(cfg(feature = "luau")))]
475-
#[doc(hidden)]
476475
pub fn sandbox(&self) -> Result<()> {
477476
let lua = self.0.lua.lock();
478477
let state = lua.state();

src/vector.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ impl Vector {
3838
}
3939

4040
/// Creates a new vector with all components set to `0.0`.
41-
#[doc(hidden)]
4241
pub const fn zero() -> Self {
4342
Self([0.0; Self::SIZE])
4443
}

0 commit comments

Comments
 (0)