From 8875cf96c23e0fb0ed70dfe6ff48096168127c70 Mon Sep 17 00:00:00 2001 From: Vertexwahn Date: Tue, 9 Jan 2024 19:32:46 +0100 Subject: [PATCH] Fix spelling: othewise ==> otherwise (#3791) --- test/scan.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/scan.h b/test/scan.h index 91351b00..1ef94f41 100644 --- a/test/scan.h +++ b/test/scan.h @@ -16,7 +16,7 @@ namespace detail { inline auto is_whitespace(char c) -> bool { return c == ' ' || c == '\n'; } -// If c is a hex digit returns its numeric value, othewise -1. +// If c is a hex digit returns its numeric value, otherwise -1. inline auto to_hex_digit(char c) -> int { if (c >= '0' && c <= '9') return c - '0'; if (c >= 'a' && c <= 'f') return c - 'a' + 10;