Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/pages/reference/data-model/dimensions.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -547,7 +547,7 @@ the duration of the time interval and has the following format:
`quantity unit [quantity unit...]`, e.g., `5 days` or `1 year 6 months`.

Optionally, a custom granularity might use the `offset` parameter to specify how
the time interval is shifted forward or backward in time. It has the the same
the time interval is shifted forward or backward in time. It has the same
format as `interval`, however, you can also provide negative quantities, e.g.,
`-1 day` or `1 month -10 days`.

Expand Down
2 changes: 1 addition & 1 deletion rust/cubestore/cubestore/src/sys/malloc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ pub const HAS_TRIM_ALLOC: bool = false;
/// Ask the memory allocator to return the freed memory to the system.
/// This only has effect when compiled for glibc, this is a no-op on other systems.
///
/// Cubestore produces allocation patterns that hit the limitations of glibc`s malloc, which results
/// Cubestore produces allocation patterns that hit the limitations of glibc's malloc, which results
/// in too many physical memory pages being retained in the allocator's arena. This leads to the
/// resident set size growing over the acceptable limits.
/// Probably related to https://sourceware.org/bugzilla/show_bug.cgi?id=11261.
Expand Down
2 changes: 1 addition & 1 deletion rust/cubestore/cubezetasketch/src/sparse.rs
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ impl SparseRepresentation {
/// - If the sparse representation has become too large, converts to a `NormalRepresentation`.
///
/// Returns a new normal representation if this sparse representation has outgrown itself or
/// `None` if the sparse representation can continue to be be used.
/// `None` if the sparse representation can continue to be used.
#[must_use]
fn update_representation(&mut self, state: &mut State) -> Result<Option<NormalRepresentation>> {
if (self.max_buffer_elements as usize) < self.buffer.len() {
Expand Down
Loading