diff mbox

[ovs-dev] expr: Fix crossproduct example.

Message ID 1442010732-30886-1-git-send-email-jpettit@nicira.com
State Accepted
Headers show

Commit Message

Justin Pettit Sept. 11, 2015, 10:32 p.m. UTC
Signed-off-by: Justin Pettit <jpettit@nicira.com>
---
 ovn/lib/expr.h |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

Comments

Ben Pfaff Sept. 11, 2015, 10:34 p.m. UTC | #1
On Fri, Sep 11, 2015 at 03:32:12PM -0700, Justin Pettit wrote:
> Signed-off-by: Justin Pettit <jpettit@nicira.com>

Someday, I will learn to count.

Acked-by: Ben Pfaff <blp@nicira.com>
Justin Pettit Sept. 11, 2015, 10:38 p.m. UTC | #2
> On Sep 11, 2015, at 3:34 PM, Ben Pfaff <blp@nicira.com> wrote:
> 
> On Fri, Sep 11, 2015 at 03:32:12PM -0700, Justin Pettit wrote:
>> Signed-off-by: Justin Pettit <jpettit@nicira.com>
> 
> Someday, I will learn to count.
> 
> Acked-by: Ben Pfaff <blp@nicira.com>

Thanks.  Pushed to master.

--Justin
diff mbox

Patch

diff --git a/ovn/lib/expr.h b/ovn/lib/expr.h
index b411e65..d755b55 100644
--- a/ovn/lib/expr.h
+++ b/ovn/lib/expr.h
@@ -210,7 +210,7 @@  const char *expr_level_to_string(enum expr_level);
  *     ip6,actions=conjunction(1,1/3)
  *     tp_src=1,actions=conjunction(1,2/3)
  *     tp_src=2,actions=conjunction(1,2/3)
- *     tp_src=2,actions=conjunction(1,2/3)
+ *     tp_src=3,actions=conjunction(1,2/3)
  *     tp_dst=4,actions=conjunction(1,3/3)
  *     tp_dst=5,actions=conjunction(1,3/3)
  *     tp_dst=6,actions=conjunction(1,3/3)
@@ -222,10 +222,10 @@  const char *expr_level_to_string(enum expr_level);
  *     conj_id=1,actions=...
  *     ip,tp_src=1,actions=conjunction(1,1/2)
  *     ip,tp_src=2,actions=conjunction(1,1/2)
- *     ip,tp_src=2,actions=conjunction(1,1/2)
+ *     ip,tp_src=3,actions=conjunction(1,1/2)
  *     ip6,tp_src=1,actions=conjunction(1,1/2)
  *     ip6,tp_src=2,actions=conjunction(1,1/2)
- *     ip6,tp_src=2,actions=conjunction(1,1/2)
+ *     ip6,tp_src=3,actions=conjunction(1,1/2)
  *     ip,tp_dst=4,actions=conjunction(1,2/2)
  *     ip,tp_dst=5,actions=conjunction(1,2/2)
  *     ip,tp_dst=6,actions=conjunction(1,2/2)