summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorYAMAMOTO Takashi <yamamoto@valinux.co.jp>2014-09-11 13:55:25 +0900
committerFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2014-09-12 09:04:46 -0700
commit4565fa4122b4550398d945b600ca34669ad7e707 (patch)
treeabe88ddb5bbb89473dcbcc4114817510bb470ff9
parent891eb5edf6d380dd1dc4a81070d7de91d67bd114 (diff)
ryu.cfg: Fix a comment
Signed-off-by: YAMAMOTO Takashi <yamamoto@valinux.co.jp> Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
-rw-r--r--ryu/cfg.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ryu/cfg.py b/ryu/cfg.py
index f2f05b44..ea21ea48 100644
--- a/ryu/cfg.py
+++ b/ryu/cfg.py
@@ -26,7 +26,7 @@ import oslo.config.cfg
# We will unshare c. (and stop using it) as soon as ofagent neutron agent
# is updated.
# We want to avoid using c. for our options as a python program which embeds
-# ryu applications (eg. neutron agent) might want to its own set of cli
+# ryu applications (eg. neutron agent) might want to put its own set of cli
# options into it, which can conflict with ours. (Currently there seems
# no conflict for the neutron agent. But who knows?)
# At some point later we might want to unshare a. and b. as well, in order