summaryrefslogtreecommitdiffstats
path: root/DynamicTablesPkg
diff options
context:
space:
mode:
authorRebecca Cran <rebecca@bsdio.com>2024-07-30 10:02:01 -0600
committermergify[bot] <37929162+mergify[bot]@users.noreply.github.com>2024-08-01 19:53:47 +0000
commitbbee1cc852fa8676ed0b530b1c67c92f32f4f740 (patch)
treeed8f4e3a81e047c40fbdfbbc1e49db0e2763cde5 /DynamicTablesPkg
parentc26490ea29f47ca059183d9447ac23b3b463d9d4 (diff)
downloadedk2-bbee1cc852fa8676ed0b530b1c67c92f32f4f740.tar.gz
edk2-bbee1cc852fa8676ed0b530b1c67c92f32f4f740.tar.bz2
edk2-bbee1cc852fa8676ed0b530b1c67c92f32f4f740.zip
DynamicTablesPkg: Fix some spelling mistakes found by cspell
When cspell is installed (via `npm install cspell`), CI checks for spelling mistakes. There are currently a very large number of them: some are genuine mistakes while others are words or acryonyms that cspell doesn't know. Fix a few of the misspellings in DynamicTablesPkg. Signed-off-by: Rebecca Cran <rebecca@bsdio.com>
Diffstat (limited to 'DynamicTablesPkg')
-rw-r--r--DynamicTablesPkg/Library/Common/AmlLib/Parser/AmlParser.c2
-rw-r--r--DynamicTablesPkg/Library/Common/AmlLib/Tree/AmlNode.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/DynamicTablesPkg/Library/Common/AmlLib/Parser/AmlParser.c b/DynamicTablesPkg/Library/Common/AmlLib/Parser/AmlParser.c
index d3a51a94c7..3762441c7a 100644
--- a/DynamicTablesPkg/Library/Common/AmlLib/Parser/AmlParser.c
+++ b/DynamicTablesPkg/Library/Common/AmlLib/Parser/AmlParser.c
@@ -330,7 +330,7 @@ AmlParseString (
StrSize = 0;
// AML String is NULL terminated.
do {
- // Reading the stream moves the stream forward aswell.
+ // Reading the stream moves the stream forward as well.
Status = AmlStreamReadByte (FStream, &Byte);
if (EFI_ERROR (Status)) {
ASSERT (0);
diff --git a/DynamicTablesPkg/Library/Common/AmlLib/Tree/AmlNode.c b/DynamicTablesPkg/Library/Common/AmlLib/Tree/AmlNode.c
index 1404a2182b..0a744f1ff3 100644
--- a/DynamicTablesPkg/Library/Common/AmlLib/Tree/AmlNode.c
+++ b/DynamicTablesPkg/Library/Common/AmlLib/Tree/AmlNode.c
@@ -573,7 +573,7 @@ AmlIsMethodDefinitionNode (
{
AML_DATA_NODE *ObjectType;
- // Node is checked to be an object node aswell.
+ // Node is checked to be an object node as well.
if (AmlNodeCompareOpCode (Node, AML_METHOD_OP, 0)) {
return TRUE;
} else if (AmlNodeCompareOpCode (Node, AML_EXTERNAL_OP, 0)) {