summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorYAMAMOTO Takashi <yamamoto@valinux.co.jp>2013-04-24 14:18:01 +0900
committerFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2013-04-24 19:19:23 +0900
commit74310115d502276189c0b90eb0d5539d92f31580 (patch)
tree4fc4ad9f8cd79f19355992af50fcc66900035b4f
parent97c1aad368215fbd8825048fe9db1cd71bbeebd0 (diff)
rest_tunnel: fix comment typos
Signed-off-by: YAMAMOTO Takashi <yamamoto@valinux.co.jp> Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
-rw-r--r--ryu/app/rest_tunnel.py4
1 files 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):