helper: fix minor typos 01/5801/2
authorAntonio Borneo <borneo.antonio@gmail.com>
Sat, 11 Jul 2020 22:57:34 +0000 (00:57 +0200)
committerAntonio Borneo <borneo.antonio@gmail.com>
Sat, 5 Sep 2020 16:10:54 +0000 (17:10 +0100)
Change-Id: I785e388148c0329e51cb0b39ab30e8ee44f5a7cd
Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com>
Reviewed-on: http://openocd.zylin.com/5801
Tested-by: jenkins
src/helper/bin2char.sh
src/helper/command.h
src/helper/jim-nvp.h
src/helper/log.c
src/helper/log.h
src/helper/update_jep106.pl
src/helper/util.c

index 85a0fd6a88546cd61d33683f53a22d55568cb8ef..128ea9af6e496e51c634f500c083816eb4fe74ec 100755 (executable)
@@ -4,7 +4,7 @@
     echo "Usage: $0"
     echo
     echo "Read binary data from standard input and write it as a comma separated"
-    echo "list of hexadecimal byte values to standard ouput. The output is usable"
+    echo "list of hexadecimal byte values to standard output. The output is usable"
     echo "as a C array initializer. It is terminated with a comma so it can be"
     echo "continued e.g. for zero termination."
     exit 1
index 886bde86b6289c6505ae4d44da6e59711243fdb7..b0c84bb43d629a3226e1c4495d1fdadb543b392e 100644 (file)
@@ -168,7 +168,7 @@ struct command_invocation {
  *
  * This is *especially* important for commands such as writing
  * to flash or verifying memory. The reason is that those commands
- * can be used by programs to determine if the operation succeded
+ * can be used by programs to determine if the operation succeeded
  * or not. If the operation failed, then a program can try
  * an alternative approach.
  *
@@ -199,7 +199,7 @@ struct command {
  * Commands should be registered by filling in one or more of these
  * structures and passing them to [un]register_commands().
  *
- * A conventioal format should be used for help strings, to provide both
+ * A conventional format should be used for help strings, to provide both
  * usage and basic information:
  * @code
  * "@<options@> ... - some explanation text"
@@ -252,7 +252,7 @@ int register_commands(struct command_context *cmd_ctx, struct command *parent,
                const struct command_registration *cmds);
 
 /**
- * Unregisters all commands from the specfied context.
+ * Unregisters all commands from the specified context.
  * @param cmd_ctx The context that will be cleared of registered commands.
  * @param parent If given, only clear commands from under this one command.
  * @returns ERROR_OK on success, or an error code.
@@ -265,7 +265,7 @@ struct command *command_find_in_context(struct command_context *cmd_ctx,
 
 /**
  * Update the private command data field for a command and all descendents.
- * This is used when creating a new heirarchy of commands that depends
+ * This is used when creating a new hierarchy of commands that depends
  * on obtaining a dynamically created context.  The value will be available
  * in command handlers by using the CMD_DATA macro.
  * @param c The command (group) whose data pointer(s) will be updated.
@@ -362,7 +362,7 @@ DECLARE_PARSE_WRAPPER(_target_addr, target_addr_t);
  *
  * This function may cause the calling function to return immediately,
  * so it should be used carefully to avoid leaking resources.  In most
- * situations, parsing should be completed in full before proceding
+ * situations, parsing should be completed in full before proceeding
  * to allocate resources, and this strategy will most prevents leaks.
  */
 #define COMMAND_PARSE_NUMBER(type, in, out) \
index 7b4a491d3320831ee1b8d7c490cfb9445de8ec5a..4c4dc8ff4fbb9ae13c9184a42c738b1e4c7fd3ff 100644 (file)
@@ -127,7 +127,7 @@ void Jim_SetResult_NvpUnknown(Jim_Interp *interp,
 
 /** Debug: convert argc/argv into a printable string for printf() debug
  *
- * \param interp - the interpeter
+ * \param interp - the interpreter
  * \param argc   - arg count
  * \param argv   - the objects
  *
@@ -150,7 +150,7 @@ const char *Jim_Debug_ArgvString(Jim_Interp *interp, int argc, Jim_Obj *const *a
  * Some TCL objects have various "configuration" values.
  * For example - in Tcl/Tk the "buttons" have many options.
  *
- * Usefull when dealing with command options.
+ * Useful when dealing with command options.
  * that may come in any order...
  *
  * Does not support "-foo = 123" type options.
index b05850df026adbf7dc62ac12ffb98f7e85471801..7440b70f62c1c43fe05adcd48f68fbe4e21996b8 100644 (file)
@@ -469,7 +469,7 @@ void kept_alive(void)
                gdb_timeout_warning(delta_time);
 }
 
-/* if we sleep for extended periods of time, we must invoke keep_alive() intermittantly */
+/* if we sleep for extended periods of time, we must invoke keep_alive() intermittently */
 void alive_sleep(uint64_t ms)
 {
        uint64_t napTime = 10;
@@ -493,7 +493,7 @@ void busy_sleep(uint64_t ms)
        }
 }
 
-/* Maximum size of socket error message retreived from operation system */
+/* Maximum size of socket error message retrieved from operation system */
 #define MAX_SOCKET_ERR_MSG_LENGTH 256
 
 /* Provide log message for the last socket error.
index eac535deb12c6f0dd1e17a843e8788104e82f087..0c6623f01e10257c5747273a26a125d7ed162feb 100644 (file)
@@ -40,7 +40,7 @@
  * LOG_LVL_SILENT - turn off all output. In lieu of try + catch this can be used as a
  *                  feeble ersatz.
  * LOG_LVL_USER - user messages. Could be anything from information
- *                to progress messags. These messages do not represent
+ *                to progress messages. These messages do not represent
  *                incorrect or unexpected behaviour, just normal execution.
  * LOG_LVL_ERROR - fatal errors, that are likely to cause program abort
  * LOG_LVL_WARNING - non-fatal errors, that may be resolved later
index caec0664f23b4a85fbb4e4e050de5de3cf459b00..561e04b00558ff170416a615c5d48c2b9cf7366e 100755 (executable)
@@ -6,7 +6,7 @@ use File::Basename;
 if (@ARGV != 1) {
        die "Usage: $0 <JEP106 PDF document>\n\n"
        . "Convert the JEDEC document containing manufacturer identification codes\n"
-       . "to an array initializer suitable for incusion into jep106.c. The latest\n"
+       . "to an array initializer suitable for inclusion into jep106.c. The latest\n"
        . "version of the document can be found here:\n"
        . "http://www.jedec.org/standards-documents/results/jep106\n";
 };
index 56baf95d1ca07295b4c72d2aaebaf3be56f5dd41..dcd59e6eac0dea819c7d2c3da402fd09e69fbc38 100644 (file)
@@ -47,7 +47,7 @@ static const struct command_registration util_command_handlers[] = {
                .mode = COMMAND_ANY,
                .jim_handler = util_Jim_Command_ms,
                .help =
-                       "Returns ever increasing milliseconds. Used to calculuate differences in time.",
+                       "Returns ever increasing milliseconds. Used to calculate differences in time.",
                .usage = "",
        },
        COMMAND_REGISTRATION_DONE

Linking to existing account procedure

If you already have an account and want to add another login method you MUST first sign in with your existing account and then change URL to read https://review.openocd.org/login/?link to get to this page again but this time it'll work for linking. Thank you.

SSH host keys fingerprints

1024 SHA256:YKx8b7u5ZWdcbp7/4AeXNaqElP49m6QrwfXaqQGJAOk gerrit-code-review@openocd.zylin.com (DSA)
384 SHA256:jHIbSQa4REvwCFG4cq5LBlBLxmxSqelQPem/EXIrxjk gerrit-code-review@openocd.org (ECDSA)
521 SHA256:UAOPYkU9Fjtcao0Ul/Rrlnj/OsQvt+pgdYSZ4jOYdgs gerrit-code-review@openocd.org (ECDSA)
256 SHA256:A13M5QlnozFOvTllybRZH6vm7iSt0XLxbA48yfc2yfY gerrit-code-review@openocd.org (ECDSA)
256 SHA256:spYMBqEYoAOtK7yZBrcwE8ZpYt6b68Cfh9yEVetvbXg gerrit-code-review@openocd.org (ED25519)
+--[ED25519 256]--+
|=..              |
|+o..   .         |
|*.o   . .        |
|+B . . .         |
|Bo. = o S        |
|Oo.+ + =         |
|oB=.* = . o      |
| =+=.+   + E     |
|. .=o   . o      |
+----[SHA256]-----+
2048 SHA256:0Onrb7/PHjpo6iVZ7xQX2riKN83FJ3KGU0TvI0TaFG4 gerrit-code-review@openocd.zylin.com (RSA)