diff options
-rw-r--r-- | ovn/utilities/ovn-trace.8.xml | 6 | ||||
-rw-r--r-- | ovn/utilities/ovn-trace.c | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/ovn/utilities/ovn-trace.8.xml b/ovn/utilities/ovn-trace.8.xml index 411bf1cb0..747e1306b 100644 --- a/ovn/utilities/ovn-trace.8.xml +++ b/ovn/utilities/ovn-trace.8.xml @@ -137,9 +137,9 @@ <p> OVN ``programs'' traces also tend to encounter long strings of logical flows with match expression <code>1</code> (which matches every packet) - the single action <code>next;</code>. These are uninteresting and merely - clutter output, so <code>ovn-trace</code> omits them entirely even from - detailed output. + and the single action <code>next;</code>. These are uninteresting + and merely clutter output, so <code>ovn-trace</code> omits them + entirely even from detailed output. </p> <p> diff --git a/ovn/utilities/ovn-trace.c b/ovn/utilities/ovn-trace.c index df2ff219d..761b201af 100644 --- a/ovn/utilities/ovn-trace.c +++ b/ovn/utilities/ovn-trace.c @@ -85,12 +85,12 @@ main(int argc, char *argv[]) if (get_detach()) { if (argc != 0) { ovs_fatal(0, "non-option arguments not supported with --detach " - "(use --help for help"); + "(use --help for help)"); } } else { if (argc != 2) { ovs_fatal(0, "exactly two non-option arguments are required " - "(use --help for help"); + "(use --help for help)"); } } |