Skip to content

MdeModulePkg: Fix typos #11043

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion MdeModulePkg/Include/Protocol/DisplayProtocol.h
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ struct _FORM_DISPLAY_ENGINE_FORM {
//
LIST_ENTRY StatementListOSF;
//
// The input screen dimenstions info.
// The input screen dimensions info.
//
EFI_SCREEN_DESCRIPTOR *ScreenDimensions;
//
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ DisplayPageFrame (
return EFI_INVALID_PARAMETER;
}

Status = ScreenDiemensionInfoValidate (FormData);
Status = ScreenDimensionInfoValidate (FormData);
if (EFI_ERROR (Status)) {
return Status;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ ProcessExternedOpcode (
}

/**
Validate the input screen diemenstion info.
Validate the input screen dimension info.

@param FormData The input form data info.

Expand All @@ -387,7 +387,7 @@ ProcessExternedOpcode (

**/
EFI_STATUS
ScreenDiemensionInfoValidate (
ScreenDimensionInfoValidate (
IN FORM_DISPLAY_ENGINE_FORM *FormData
)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ PrintFramework (
);

/**
Validate the input screen diemenstion info.
Validate the input screen dimension info.

@param FormData The input form data info.

Expand All @@ -138,7 +138,7 @@ PrintFramework (

**/
EFI_STATUS
ScreenDiemensionInfoValidate (
ScreenDimensionInfoValidate (
IN FORM_DISPLAY_ENGINE_FORM *FormData
);

Expand Down
Loading