Skip to content

Commit

Permalink
Doc fix
Browse files Browse the repository at this point in the history
  • Loading branch information
abey79 committed Jun 4, 2024
1 parent 5901227 commit 3e78858
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions crates/re_ui/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -524,9 +524,9 @@ impl ReUi {

/// Create a separator similar to [`egui::Separator`] but with the full span behavior.
///
/// The span is determined using [`crate::full_span`]. Contrary to [`egui::Separator`], this
/// separator allocates a single pixel in height, as spacing is typically handled by content
/// when full span highlighting is used.
/// The span is determined using [`crate::UiExt::get_full_span`]. Contrary to
/// [`egui::Separator`], this separator allocates a single pixel in height, as spacing is
/// typically handled by content when full span highlighting is used.
pub fn full_span_separator(ui: &mut egui::Ui) -> egui::Response {
let height = 1.0;

Expand Down
2 changes: 1 addition & 1 deletion crates/re_ui/src/list_item/list_item.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ pub struct ShowCollapsingResponse<R> {
///
/// The following features are supported:
/// - Flat or collapsible hierarchical lists.
/// - Full-span background highlighting via [`crate::full_span::full_span_scope`].
/// - Full-span background highlighting.
/// - Interactive or not.
/// - Support for drag and drop with [`crate::drag_and_drop`].
///
Expand Down

0 comments on commit 3e78858

Please sign in to comment.