From 65e231bad1d7219b60f9a48bd890bf5cdfe4c0b9 Mon Sep 17 00:00:00 2001 From: Mark Horvath Date: Wed, 24 Jan 2024 13:45:59 +0100 Subject: [PATCH] [NFC] Fix wording for split and merge docs --- intrinsiccv/include/intrinsiccv.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/intrinsiccv/include/intrinsiccv.h b/intrinsiccv/include/intrinsiccv.h index dfb1b2f15..a9d98637f 100644 --- a/intrinsiccv/include/intrinsiccv.h +++ b/intrinsiccv/include/intrinsiccv.h @@ -587,9 +587,9 @@ void INTRINSICCV_C_API(gaussian_blur_5x5_u8)( /// stride values in the array must be the same as the /// channel number. All stride values must not be less than /// width * (element size in bytes). -/// @param width How many pixels are in one row of the source. (One -/// pixel consists of 'channels' number of elements.) -/// @param height How many rows are in the source. +/// @param width Number of pixels in one row of the source. (One pixel +/// consists of 'channels' number of elements.) +/// @param height Number of rows in the source. /// @param channels Number of channels in the source. /// @param element_size Size of one element in bytes. /// @@ -618,8 +618,8 @@ void INTRINSICCV_C_API(transpose)(const void *src, size_t src_stride, void *dst, /// @param dst_stride Distance in bytes from the start of one row to the /// start of the next row in the destination data. Must not /// be less than width * (element size in bytes) * channels. -/// @param width How many elements are in a row in the source. -/// @param height How many rows are in the source. +/// @param width Number of elements in a row in the source. +/// @param height Number of rows in the source. /// @param channels Number of channels in the destination. /// @param element_size Size of one element in bytes. /// -- GitLab