From 11bce11278befe5d99d9cd7d3c87a16b1fab1386 Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Thu, 5 May 2022 21:51:39 -0400 Subject: [PATCH] spelling: hexadecimal Signed-off-by: Josh Soref --- src/lib/base/String.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/base/String.h b/src/lib/base/String.h index 9c5a53ba..1fb5ba79 100644 --- a/src/lib/base/String.h +++ b/src/lib/base/String.h @@ -71,9 +71,9 @@ Finds the last dot and remove all characters from the dot to the end */ std::string removeFileExt(std::string filename); -//! Convert into hexdecimal +//! Convert into hexadecimal /*! -Convert each character in \c subject into hexdecimal form with \c width +Convert each character in \c subject into hexadecimal form with \c width */ std::string to_hex(const std::vector& subject, int width, const char fill = '0');