diff options
| author | Tzvetomir Stoyanov (VMware) <[email protected]> | 2020-07-21 21:16:46 -0400 |
|---|---|---|
| committer | Arnaldo Carvalho de Melo <[email protected]> | 2020-08-06 09:26:30 -0300 |
| commit | 7db6330dca8ffcc89b3d01300f4876d69ec884b7 (patch) | |
| tree | 881a0658deddfe5d25c5a3c1751eb7f592137b8d | |
| parent | 058612a6f773824b6e53629855c3d811ce7906be (diff) | |
libtraceevent: Fix typo in tep_plugin_add_option() description
A typo "optiona" -> "optional" is fixed in description of
tep_plugin_add_option() API.
Link: https://lore.kernel.org/r/CAM9d7cizjF+fbK7YzmsBDgrx__4YAOsmEq67D3sWET8FF+YdFA@mail.gmail.com
Link: https://lore.kernel.org/linux-trace-devel/[email protected]
Link: https://lore.kernel.org/linux-trace-devel/[email protected]
Suggested-by: Namhyung Kim <[email protected]>
Signed-off-by: Tzvetomir Stoyanov (VMware) <[email protected]>
Acked-by: Namhyung Kim <[email protected]>
Cc: Andrew Morton <[email protected]>
Cc: Jiri Olsa <[email protected]>
Cc: [email protected]
Link: http://lore.kernel.org/lkml/[email protected]
Signed-off-by: Steven Rostedt (VMware) <[email protected]>
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
| -rw-r--r-- | tools/lib/traceevent/event-plugin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/lib/traceevent/event-plugin.c b/tools/lib/traceevent/event-plugin.c index a39eeb6ef1f2..f8d253a61970 100644 --- a/tools/lib/traceevent/event-plugin.c +++ b/tools/lib/traceevent/event-plugin.c @@ -310,7 +310,7 @@ static int process_option(const char *plugin, const char *option, const char *va /** * tep_plugin_add_option - add an option/val pair to set plugin options * @name: The name of the option (format: <plugin>:<option> or just <option>) - * @val: (optiona) the value for the option + * @val: (optional) the value for the option * * Modify a plugin option. If @val is given than the value of the option * is set (note, some options just take a boolean, so @val must be either |