improve wording
This commit is contained in:
parent
9f8eeca3bf
commit
85879fe83d
@ -451,7 +451,7 @@ function hideThemeButtonState() {
|
||||
// The element is not visible, we need to make it appear!
|
||||
collapseDocs(collapses[0], "show");
|
||||
}
|
||||
// In case this is a sub-variant, toggle the <details> open.
|
||||
// Open all ancestor <details> to make this element visible.
|
||||
openParentDetails(h3.parentNode);
|
||||
}
|
||||
}
|
||||
|
@ -29,7 +29,9 @@ pub struct Foo;
|
||||
|
||||
impl Foo {
|
||||
#[must_use]
|
||||
pub fn must_use(&self) -> bool { true }
|
||||
pub fn must_use(&self) -> bool {
|
||||
true
|
||||
}
|
||||
}
|
||||
|
||||
/// Just a normal enum.
|
||||
@ -85,3 +87,7 @@ pub trait AnotherOne {
|
||||
/// let x = 12;
|
||||
/// ```
|
||||
pub fn check_list_code_block() {}
|
||||
|
||||
pub enum AnEnum {
|
||||
WithVariants { and: usize, sub: usize, variants: usize },
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user