summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/vppinfra/string.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vppinfra/string.c b/src/vppinfra/string.c
index feae5b9165c..bf6b24894e2 100644
--- a/src/vppinfra/string.c
+++ b/src/vppinfra/string.c
@@ -385,7 +385,7 @@ strncat_s (char *__restrict__ dest, rsize_t dmax,
* s1max and ptr are modified to contain the state
* null runtime constraint error or token is not found
*
- * @example
+ * Example:
* char *str2 = " ";
* char str1[100];
* uword len;
@@ -457,7 +457,7 @@ strnlen_s (const char *s, size_t maxsize)
* EINVAL runtime constraint error
* ESRCH no match
*
- * @example
+ * Example:
* char *sub = 0;
* char *s1 = "success is not final, failure is not fatal.";
*
116' href='#n116'>116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164