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>
This commit is contained in:
parent
c26490ea29
commit
bbee1cc852
|
@ -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);
|
||||
|
|
|
@ -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)) {
|
||||
|
|
Loading…
Reference in New Issue