From e2c627a7fc573249d92f2b174071a91dd708080d Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Tue, 16 Jan 2024 08:19:49 -0600 Subject: [PATCH] Cleanup: Add the word inclusive to the range documentation in additional places. --- level_0/f_type/c/type/range.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/level_0/f_type/c/type/range.h b/level_0/f_type/c/type/range.h index d65e7bb..1db8085 100644 --- a/level_0/f_type/c/type/range.h +++ b/level_0/f_type/c/type/range.h @@ -24,8 +24,8 @@ extern "C" { * Set start to some value larger than stop to designate that there is no range (such as start = 1, stop = 0). * * Properties: - * - start: The start position. - * - stop: The stop position. + * - start: The inclusive start position. + * - stop: The inclusive stop position. */ #ifndef _di_f_range_t_ typedef struct { -- 1.8.3.1