Skip to content

Commit af7e782

Browse files
committed
Corrected spelling of "Environemnt" to "Environment"
1 parent 66bd231 commit af7e782

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Source/FikaAmazonAPI/Services/ApiUrls.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
namespace FikaAmazonAPI.AmazonSpApiSDK.Services
44
{
55

6-
public static class EnvironemntManager
6+
public static class EnvironmentManager
77
{
8-
public static Environments Environemnt { get; set; } = Environments.Production;
8+
public static Environments Environment { get; set; } = Environments.Production;
99
public enum Environments
1010
{
1111
Sandbox, Production

Source/FikaAmazonAPI/Services/RequestService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ protected string ApiBaseUrl
3535
{
3636
get
3737
{
38-
return EnvironemntManager.Environemnt == EnvironemntManager.Environments.Sandbox ? AmazonSandboxUrl : AmazonProductionUrl;
38+
return EnvironmentManager.Environment == EnvironmentManager.Environments.Sandbox ? AmazonSandboxUrl : AmazonProductionUrl;
3939
}
4040
}
4141

0 commit comments

Comments
 (0)