From 034622aa3529e7702014ee8c2e5f0d608db494b1 Mon Sep 17 00:00:00 2001 From: "H. Joe Lee" Date: Tue, 21 Nov 2023 10:53:17 -0600 Subject: [PATCH] Fix typo: look -> loop (#3866) --- tools/src/h5dump/h5dump.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/src/h5dump/h5dump.c b/tools/src/h5dump/h5dump.c index a1a6de0e119..8fce1cadae5 100644 --- a/tools/src/h5dump/h5dump.c +++ b/tools/src/h5dump/h5dump.c @@ -1089,7 +1089,7 @@ parse_command_line(int argc, const char *const *argv) * for subsetting: "--start", "--stride", "--count", and "--block" * which can come in any order. If we run out of parameters (EOF) * or run into one which isn't a subsetting parameter (NOT s, S, - * c, or K), then we exit the do-while look, set the subset_info + * c, or K), then we exit the do-while loop, set the subset_info * to the structure we've been filling. If we've reached the end * of the options, we exit the parsing (goto parse_end) otherwise, * since we've "read" the next option, we need to parse it. So we