Fix RST rendering problem
authorJohn Tsichritzis <john.tsichritzis@arm.com>
Tue, 9 Jul 2019 17:09:03 +0000 (18:09 +0100)
committerJohn Tsichritzis <john.tsichritzis@arm.com>
Tue, 9 Jul 2019 17:09:03 +0000 (18:09 +0100)
Change-Id: Ic5aab23b549d0bf8e0f7053b46fd59243214aac1
Signed-off-by: John Tsichritzis <john.tsichritzis@arm.com>
docs/process/coding-guidelines.rst

index 093d66be3e45fe73cf57e209401be3e99513510c..a53da77b94ccba777328f674afe1f2df6953eb69 100644 (file)
@@ -272,15 +272,15 @@ used (Banned) or are discouraged from use and must be used with care (Caution).
 +------------------------+-----------+--------------------------------------+
 |    libc function       | Status    | Comments                             |
 +========================+===========+======================================+
-| ``strcpy, wcscpy``     | Banned    | use strlcpy instead                  |
+| ``strcpy, wcscpy``,    | Banned    | use strlcpy instead                  |
 | ``strncpy``            |           |                                      |
 +------------------------+-----------+--------------------------------------+
-| ``strcat, wcscat``     | Banned    | use strlcat instead                  |
+| ``strcat, wcscat``,    | Banned    | use strlcat instead                  |
 | ``strncat``            |           |                                      |
-+----------------------- +-----------+--------------------------------------+
++------------------------+-----------+--------------------------------------+
 | ``sprintf, vsprintf``  | Banned    | use snprintf, vsnprintf              |
 |                        |           | instead                              |
-+---------------------- -+-----------+--------------------------------------+
++------------------------+-----------+--------------------------------------+
 | ``snprintf``           | Caution   | ensure result fits in buffer         |
 |                        |           | i.e : snprintf(buf,size...) < size   |
 +------------------------+-----------+--------------------------------------+