From 95a5dcde9f6507d32ea6ceea0db6eb377b9a5214 Mon Sep 17 00:00:00 2001 From: Ulf Magnusson Date: Fri, 19 Jun 2015 00:45:38 +0200 Subject: Use consistent capitalization. --- kconfiglib.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/kconfiglib.py b/kconfiglib.py index b3f29a8..6667bf6 100644 --- a/kconfiglib.py +++ b/kconfiglib.py @@ -104,7 +104,7 @@ class Config(object): configuration. For the Linux kernel, you'll probably want "Kconfig" from the top-level directory, as environment variables will make sure the right Kconfig is included from there - (arch//Kconfig). If you are using kconfiglib via 'make + (arch//Kconfig). If you are using Kconfiglib via 'make scriptconfig', the filename of the base base Kconfig file will be in sys.argv[1]. @@ -1215,7 +1215,7 @@ class Config(object): self._warn("The symbol {0} references the " "non-existent environment variable {1} and " "will get the empty string as its value. " - "If you're using kconfiglib via " + "If you're using Kconfiglib via " "'make (i)scriptconfig', it should have " "set up the environment correctly for you. " "If you still got this message, that " @@ -2274,7 +2274,7 @@ class Symbol(Item): def __init__(self): """Symbol constructor -- not intended to be called directly by - kconfiglib clients.""" + Kconfiglib clients.""" self.name = None self.type = UNKNOWN @@ -2614,7 +2614,7 @@ class Menu(Item): def __init__(self): """Menu constructor -- not intended to be called directly by - kconfiglib clients.""" + Kconfiglib clients.""" self.title = None self.dep_expr = None @@ -2831,7 +2831,7 @@ class Choice(Item): def __init__(self): """Choice constructor -- not intended to be called directly by - kconfiglib clients.""" + Kconfiglib clients.""" self.name = None # Yes, choices can be named self.type = UNKNOWN @@ -2999,7 +2999,7 @@ class Comment(Item): def __init__(self): """Comment constructor -- not intended to be called directly by - kconfiglib clients.""" + Kconfiglib clients.""" self.text = None self.dep_expr = None -- cgit v1.2.3