git-compat-util: fix documentation syntax
The parameter marker for x was garbled in its introduction in 89c855ed3c ("git-compat-util.h: implement a different ARRAY_SIZE macro for for safely deriving the size of array", 2015-04-30). Signed-off-by: Beat Bolli <dev+git@drbeat.li> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Beat Bolli committed
Oct 11, 2019 at 20:24 UTC
68b69211b2e45f62be0ca58ac228fe7f54873295
1 file changed
+1
-1
git-compat-util.h
+1
-1
@@ -77,7 +77,7 @@
77
#endif
78
/*
79
* ARRAY_SIZE - get the number of elements in a visible array
80
- * <at> x: the array whose size you want.
80
+ * @x: the array whose size you want.
81
*
82
* This does not work on pointers, or arrays declared as [], or
83
* function parameters. With correct compiler support, such usage