aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNathan Skrzypczak <nathan.skrzypczak@gmail.com>2021-09-29 15:35:31 +0200
committerAndrew Yourtchenko <ayourtch@gmail.com>2021-10-06 12:27:40 +0000
commitecd6b1a985acd8e0256a170f1fe1f7e38df8c420 (patch)
treeefa0bcfa0f364d529fba9800dd9c1924219e0278
parent6f38f1ca0869196815f87daf36811534606d2a4d (diff)
vlib: doc nitfixes
Type: improvement Change-Id: I9e761f908d9d2becbc61eb0515dc6b7c1e1e036f Signed-off-by: Nathan Skrzypczak <nathan.skrzypczak@gmail.com>
-rw-r--r--src/vlib/node_cli.c2
-rw-r--r--src/vlib/unix/cli.c2
-rw-r--r--src/vppinfra/clib.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/vlib/node_cli.c b/src/vlib/node_cli.c
index 8cf57948cc4..a2cae364d9b 100644
--- a/src/vlib/node_cli.c
+++ b/src/vlib/node_cli.c
@@ -310,7 +310,7 @@ show_node_graphviz (vlib_main_t * vm,
/*?
* Dump dot files data to draw a graph of all the nodes.
* If the argument 'filter' is provided, only the active nodes (since the last
- * "clear run" comand) are selected and they are scaled and colored according
+ * "clear run" command) are selected and they are scaled and colored according
* to their utilization. You can choose to filter nodes that are called,
* nodes that receive vectors or both (default).
* The 'file' option allows to save data in a temp file.
diff --git a/src/vlib/unix/cli.c b/src/vlib/unix/cli.c
index c7f0bccf286..e6f549b776f 100644
--- a/src/vlib/unix/cli.c
+++ b/src/vlib/unix/cli.c
@@ -3462,7 +3462,7 @@ done:
/*?
* Executes a sequence of CLI commands which are read from a file. If
- * a command is unrecognised or otherwise invalid then the usual CLI
+ * a command is unrecognized or otherwise invalid then the usual CLI
* feedback will be generated, however execution of subsequent commands
* from the file will continue.
*
diff --git a/src/vppinfra/clib.h b/src/vppinfra/clib.h
index ade7e5fa4bb..f0c3aca1e03 100644
--- a/src/vppinfra/clib.h
+++ b/src/vppinfra/clib.h
@@ -127,7 +127,7 @@
/*
* Compiler barrier
- * prevent compiler to reorder memory access accross this boundary
+ * prevent compiler to reorder memory access across this boundary
* prevent compiler to cache values in register (force reload)
* Not to be confused with CPU memory barrier below
*/