From 4fd8186bb465a1a76b56f62ddb7780c2c22e5f72 Mon Sep 17 00:00:00 2001 From: FrankHB Date: Tue, 26 Nov 2024 19:02:37 +0800 Subject: [PATCH] [allocator.requirements.general] Change "pointer" to "value". Technically a pointer is a type, this should mean "a pointer value". And "a pointer value of type `C*`" is somewhat confusing between `C*` and `C**` at the first glance. Hence, "a value of" suffice. This is also more consistent to other entries. --- source/lib-intro.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/lib-intro.tex b/source/lib-intro.tex index 4698b64fd6..4855055aa4 100644 --- a/source/lib-intro.tex +++ b/source/lib-intro.tex @@ -2086,7 +2086,7 @@ \item \tcode{b} denotes a value of type \tcode{Y}, \item -\tcode{c} denotes a pointer of type \tcode{C*} +\tcode{c} denotes a value of type \tcode{C*} through which indirection is valid, \item \tcode{p} denotes a value of type \tcode{XX::pointer}