File tree Expand file tree Collapse file tree 3 files changed +0
-3
lines changed Expand file tree Collapse file tree 3 files changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,6 @@ impl Buffer {
25
25
}
26
26
27
27
/// Returns `true` if the buffer is empty.
28
- #[ doc( hidden) ]
29
28
pub fn is_empty ( & self ) -> bool {
30
29
self . len ( ) == 0
31
30
}
Original file line number Diff line number Diff line change @@ -472,7 +472,6 @@ impl Thread {
472
472
/// ```
473
473
#[ cfg( any( feature = "luau" , doc) ) ]
474
474
#[ cfg_attr( docsrs, doc( cfg( feature = "luau" ) ) ) ]
475
- #[ doc( hidden) ]
476
475
pub fn sandbox ( & self ) -> Result < ( ) > {
477
476
let lua = self . 0 . lua . lock ( ) ;
478
477
let state = lua. state ( ) ;
Original file line number Diff line number Diff line change @@ -38,7 +38,6 @@ impl Vector {
38
38
}
39
39
40
40
/// Creates a new vector with all components set to `0.0`.
41
- #[ doc( hidden) ]
42
41
pub const fn zero ( ) -> Self {
43
42
Self ( [ 0.0 ; Self :: SIZE ] )
44
43
}
You can’t perform that action at this time.
0 commit comments