Skip to content

Commit

Permalink
Awkward doc reference
Browse files Browse the repository at this point in the history
  • Loading branch information
jleibs committed Feb 1, 2024
1 parent edadbb8 commit caadc94
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions crates/re_space_view_time_series/src/aggregation.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
use crate::{PlotPoint, PlotPointAttrs};

/// Implements aggregation behavior corresponding to [`TimeSeriesAggregator::Average`].
/// Implements aggregation behaviors corresponding to [`TimeSeriesAggregator`][external::re_entity_db::TimeSeriesAggregator]:
/// `Average`
pub struct AverageAggregator;

impl AverageAggregator {
Expand Down Expand Up @@ -73,9 +74,8 @@ impl AverageAggregator {
}
}

/// Implements aggregation behaviors corresponding to [`TimeSeriesAggregator::Max`],
/// [`TimeSeriesAggregator::Min`], [`TimeSeriesAggregator::MinMax`] and
/// [`TimeSeriesAggregator::MinMaxAverage`], .
/// Implements aggregation behaviors corresponding to [`TimeSeriesAggregator`][external::re_entity_db::TimeSeriesAggregator]:
/// `Min`, `Max`, `MinMax`, and `MinMaxAverage`.
pub enum MinMaxAggregator {
/// Keep only the maximum values in the range.
Max,
Expand Down
2 changes: 1 addition & 1 deletion crates/re_space_view_time_series/src/visualizer_system.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ use crate::{
PlotPoint, PlotPointAttrs, PlotSeries, PlotSeriesKind,
};

/// The legacy system for rendering [`TimeSeriesScalars`] archetypes.
/// The legacy system for rendering [`TimeSeriesScalar`] archetypes.
#[derive(Default, Debug)]
pub struct LegacyTimeSeriesSystem {
pub annotation_map: AnnotationMap,
Expand Down

0 comments on commit caadc94

Please sign in to comment.