From 74310115d502276189c0b90eb0d5539d92f31580 Mon Sep 17 00:00:00 2001 From: YAMAMOTO Takashi Date: Wed, 24 Apr 2013 14:18:01 +0900 Subject: [PATCH] rest_tunnel: fix comment typos Signed-off-by: YAMAMOTO Takashi Signed-off-by: FUJITA Tomonori --- ryu/app/rest_tunnel.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ryu/app/rest_tunnel.py b/ryu/app/rest_tunnel.py index 295fca0e..b2786e93 100644 --- a/ryu/app/rest_tunnel.py +++ b/ryu/app/rest_tunnel.py @@ -47,11 +47,11 @@ from ryu.lib import dpid as dpid_lib # # register the dpid of the other end of tunnel # Fail if the dpid is already registered -# POST /v1.0/tunnels/switches/{dpid}/ports/{port-id}/{remote_dpip} +# POST /v1.0/tunnels/switches/{dpid}/ports/{port-id}/{remote_dpid} # # register the dpid of the other end of tunnel # Success as nop even if the dpid is already registered -# PUT /v1.0/tunnels/switches/{dpid}/ports/{port-id}/{remote_dpip} +# PUT /v1.0/tunnels/switches/{dpid}/ports/{port-id}/{remote_dpid} class TunnelKeyController(ControllerBase):