Skip to content

Commit

Permalink
typos
Browse files Browse the repository at this point in the history
  • Loading branch information
blrobl committed Feb 16, 2024
1 parent 54ebee2 commit fbc920d
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ codeunit 2515 "AppSource Product Manager" implements "AppSource Product Manager
var
AppSourceJsonUtilities: Codeunit "AppSource Json Utilities";
AppSourceProductManagerDependencies: Interface "AppSource Product Manager Dependencies";
IsDependenciesIntrfaceSet: boolean;
IsDependenciesInterfaceSet: boolean;
CatalogProductsUriLbl: label 'https://catalogapi.azure.com/products', Locked = true;
CatalogApiVersionQueryParamNameLbl: label 'api-version', Locked = true;
CatalogApiVersionQueryParamValueLbl: label '2023-05-01-preview', Locked = true;
Expand Down Expand Up @@ -105,7 +105,7 @@ codeunit 2515 "AppSource Product Manager" implements "AppSource Product Manager
procedure SetDependencies(SpecificDependencies: Interface "AppSource Product Manager Dependencies")
begin
AppSourceProductManagerDependencies := SpecificDependencies;
IsDependenciesIntrfaceSet := true;
IsDependenciesInterfaceSet := true;
end;

#region Product helpers
Expand Down Expand Up @@ -209,7 +209,7 @@ codeunit 2515 "AppSource Product Manager" implements "AppSource Product Manager
Language: Codeunit Language;
LanguageID, LocalID : integer;
begin
GetCurrentUserLanguageAnLocaleID(LanguageID, LocalID);
GetCurrentUserLanguageAndLocaleID(LanguageID, LocalID);

// Marketplace API only supports two letter languages.
LanguageName := Language.GetTwoLetterISOLanguageName(LanguageID);
Expand Down Expand Up @@ -242,7 +242,7 @@ codeunit 2515 "AppSource Product Manager" implements "AppSource Product Manager
exit(LanguageID);
end;

local procedure GetCurrentUserLanguageAnLocaleID(var LanguageID: Integer; var LocaleID: Integer)
local procedure GetCurrentUserLanguageAndLocaleID(var LanguageID: Integer; var LocaleID: Integer)
var
TempUserSettings: Record "User Settings" temporary;
Language: Codeunit Language;
Expand Down Expand Up @@ -494,7 +494,7 @@ codeunit 2515 "AppSource Product Manager" implements "AppSource Product Manager

local procedure Init()
begin
if not IsDependenciesIntrfaceSet then
if not IsDependenciesInterfaceSet then
SetDefaultDependencyImplementation();
end;

Expand All @@ -503,6 +503,6 @@ codeunit 2515 "AppSource Product Manager" implements "AppSource Product Manager
AppSourceProductManager: Codeunit "AppSource Product Manager";
begin
SetDependencies(AppSourceProductManager);
IsDependenciesIntrfaceSet := true;
IsDependenciesInterfaceSet := true;
end;
}

0 comments on commit fbc920d

Please sign in to comment.