Hello
I changed "the HTML representation" to "the ASCII representation" in the
documentation for LIM2A to make it consistent with what it actually
does. I think the fact that it returns ASCII is encoded in the function
name (similarly as it's done in U2A vs U2H) so maybe this was a copy
paste problem.
thanks
>From cfa30687f9179e7e35989d2ec51e6181e642b0a6 Mon Sep 17 00:00:00 2001
From: Ioannis Cherouvim <[email protected]>
Date: Wed, 24 Oct 2018 10:05:19 +0300
Subject: [PATCH] function comment fix
---
include/common/standard.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/common/standard.h b/include/common/standard.h
index 3e13f30..3f8d2d0 100644
--- a/include/common/standard.h
+++ b/include/common/standard.h
@@ -195,7 +195,7 @@ static inline const char *U2H(unsigned long long n)
return ret;
}
-/* returns a locally allocated string containing the HTML representation of
+/* returns a locally allocated string containing the ASCII representation of
* the number 'n' in decimal. Up to NB_ITOA_STR calls may be used in the same
* function call (eg: printf), shared with the other similar functions making
* use of itoa_str[].
--
2.6.1.windows.1