From 8ecb2d96539e967ff37f5dd5e6304d9f570d0de6 Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Thu, 10 Sep 2020 13:23:37 -0700 Subject: [PATCH] ircd::simd: Fix comment. [ci skip] --- include/ircd/simd/stream.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/ircd/simd/stream.h b/include/ircd/simd/stream.h index f5bab57d1..f7487cb24 100644 --- a/include/ircd/simd/stream.h +++ b/include/ircd/simd/stream.h @@ -136,10 +136,10 @@ noexcept /// and can be any size. /// /// * variable-stride: progress for each iteration of the loop across the input -/// and output buffers is not fixed; the transform function may advance the -/// pointer one to sizeof(block_t) bytes each iteration. Due to these -/// characteristics, unaligned bytes may be redundantly loaded and non-temporal -/// features are not used to optimize the operation. +/// and buffer is not fixed; the transform function may advance the pointer +/// one to sizeof(block_t) bytes each iteration. Due to these characteristics, +/// unaligned bytes may be redundantly loaded and non-temporal features are +/// not used to optimize the operation. /// /// u64x2 counter lanes = { available_to_user, input_length }; The argument /// `max` gives the buffer size in that format. The return value is the