From fdd6080fa67771cf125fcf9b0285dcb41cbbc8e0 Mon Sep 17 00:00:00 2001 From: Leonidas Zhak <70497898+LeonidasZhak@users.noreply.github.com> Date: Sun, 7 Jun 2026 18:51:37 +0800 Subject: [PATCH] docs: fix missing verb in summary-slide.R description The description of segment tree alternatives in summary-slide.Rd contained 'but it still fairly slow' which is missing the verb 'is'. Fixed to 'but it is still fairly slow'. --- R/summary-slide.R | 2 +- man/summary-slide.Rd | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/R/summary-slide.R b/R/summary-slide.R index 553b969..a6710d6 100644 --- a/R/summary-slide.R +++ b/R/summary-slide.R @@ -59,7 +59,7 @@ #' `slide_dbl(x, sum)`. This is extremely slow with large window sizes and #' wastes a lot of effort recomputing nearly the same information on each #' window. It can be made slightly faster by moving the sum to C to avoid -#' intermediate allocations, but it still fairly slow. +#' intermediate allocations, but it is still fairly slow. #' #' A second alternative is to use an _online_ algorithm, which uses information #' from the previous window to compute the next window. These are extremely diff --git a/man/summary-slide.Rd b/man/summary-slide.Rd index 2621988..2f9a981 100644 --- a/man/summary-slide.Rd +++ b/man/summary-slide.Rd @@ -158,7 +158,7 @@ function on each full window. This is what is done by using, for example, \code{slide_dbl(x, sum)}. This is extremely slow with large window sizes and wastes a lot of effort recomputing nearly the same information on each window. It can be made slightly faster by moving the sum to C to avoid -intermediate allocations, but it still fairly slow. +intermediate allocations, but it is still fairly slow. A second alternative is to use an \emph{online} algorithm, which uses information from the previous window to compute the next window. These are extremely