Skip to content

Commit b741af8

Browse files
committed
fixup! feat(jsref): place handler methods after instance properties
1 parent 49c2c25 commit b741af8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

crates/rari-doc/src/sidebars/jsref.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,9 +165,9 @@ struct JSRefItem {
165165
pub constructors: Vec<Page>,
166166
pub static_methods: Vec<Page>,
167167
pub static_properties: Vec<Page>,
168-
pub handler_methods: Vec<Page>,
169168
pub instance_methods: Vec<Page>,
170169
pub instance_properties: Vec<Page>,
170+
pub handler_methods: Vec<Page>,
171171
}
172172

173173
fn is_prototyp_member_page(page_typ: PageType) -> bool {
@@ -286,9 +286,9 @@ impl JSRefItem {
286286
constructors,
287287
static_methods,
288288
static_properties,
289-
handler_methods,
290289
instance_methods,
291290
instance_properties,
291+
handler_methods,
292292
}
293293
}
294294
}

0 commit comments

Comments
 (0)