aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristophe Giboudeaux <christophe@krop.fr>2021-07-13 23:20:57 +0200
committerChristophe Giboudeaux <christophe@krop.fr>2021-07-13 23:20:57 +0200
commit3471f19fc56e41b2ee6236ea3016dfa30a76c0ff (patch)
tree2615e5a9349c20f95be9d9abbccde367b2eb6eeb /src
parent530f9490749505221d137343f1bd556821b820da (diff)
downloadkconfig-3471f19fc56e41b2ee6236ea3016dfa30a76c0ff.tar.gz
kconfig-3471f19fc56e41b2ee6236ea3016dfa30a76c0ff.tar.bz2
Fix typos found by codespell
GIT_SILENT
Diffstat (limited to 'src')
-rw-r--r--src/core/kconfiggroup.h2
-rw-r--r--src/kconfig_compiler/KConfigCodeGeneratorBase.cpp2
-rw-r--r--src/kconfig_compiler/KConfigCodeGeneratorBase.h2
-rw-r--r--src/kconfig_compiler/kcfg.xsd2
-rw-r--r--src/kconfig_compiler/kconfig_compiler.cpp2
5 files changed, 5 insertions, 5 deletions
diff --git a/src/core/kconfiggroup.h b/src/core/kconfiggroup.h
index 5c125dd2..2584cb85 100644
--- a/src/core/kconfiggroup.h
+++ b/src/core/kconfiggroup.h
@@ -113,7 +113,7 @@ public:
QString name() const;
/**
- * Check whether the containing KConfig object acutally contains a
+ * Check whether the containing KConfig object actually contains a
* group with this name.
*/
bool exists() const;
diff --git a/src/kconfig_compiler/KConfigCodeGeneratorBase.cpp b/src/kconfig_compiler/KConfigCodeGeneratorBase.cpp
index f1ff06b3..0effd7e5 100644
--- a/src/kconfig_compiler/KConfigCodeGeneratorBase.cpp
+++ b/src/kconfig_compiler/KConfigCodeGeneratorBase.cpp
@@ -149,7 +149,7 @@ void KConfigCodeGeneratorBase::endNamespaces()
}
}
-// returns the member accesor implementation
+// returns the member accessor implementation
// which should go in the h file if inline
// or the cpp file if not inline
QString KConfigCodeGeneratorBase::memberAccessorBody(const CfgEntry *e, bool globalEnums) const
diff --git a/src/kconfig_compiler/KConfigCodeGeneratorBase.h b/src/kconfig_compiler/KConfigCodeGeneratorBase.h
index 4a100518..7a8c8502 100644
--- a/src/kconfig_compiler/KConfigCodeGeneratorBase.h
+++ b/src/kconfig_compiler/KConfigCodeGeneratorBase.h
@@ -121,7 +121,7 @@ protected:
return m_stream;
}
- // HACK: This needs to be accesible because the HeaderGenerator actually modifies
+ // HACK: This needs to be accessible because the HeaderGenerator actually modifies
// it while running. Considering that this is a the result of the xml Parse, and not
// the result of generating code, I consider this to be quite wrong - but moving the
// changes away from the header generator only created more problems and I have to
diff --git a/src/kconfig_compiler/kcfg.xsd b/src/kconfig_compiler/kcfg.xsd
index 1ec1dc81..f9175a1d 100644
--- a/src/kconfig_compiler/kcfg.xsd
+++ b/src/kconfig_compiler/kcfg.xsd
@@ -65,7 +65,7 @@
<xsd:complexType>
<xsd:sequence>
<xsd:element name="parameter" type="kcfg:parameter" minOccurs="0" maxOccurs="unbounded" />
- <!-- FIXME: Are really unbounded occurances of parameter allowed? -->
+ <!-- FIXME: Are really unbounded occurrences of parameter allowed? -->
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="optional"/>
<xsd:attribute name="arg" type="xsd:boolean" use="optional"/>
diff --git a/src/kconfig_compiler/kconfig_compiler.cpp b/src/kconfig_compiler/kconfig_compiler.cpp
index e997eac9..28b10e4f 100644
--- a/src/kconfig_compiler/kconfig_compiler.cpp
+++ b/src/kconfig_compiler/kconfig_compiler.cpp
@@ -619,7 +619,7 @@ QString memberGetDefaultBody(const CfgEntry *e)
return result;
}
-// returns the item accesor implementation
+// returns the item accessor implementation
// which should go in the h file if inline
// or the cpp file if not inline
QString itemAccessorBody(const CfgEntry *e, const KConfigParameters &cfg)