File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Source/FikaAmazonAPI/Services Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 3
3
namespace FikaAmazonAPI . AmazonSpApiSDK . Services
4
4
{
5
5
6
- public static class EnvironemntManager
6
+ public static class EnvironmentManager
7
7
{
8
- public static Environments Environemnt { get ; set ; } = Environments . Production ;
8
+ public static Environments Environment { get ; set ; } = Environments . Production ;
9
9
public enum Environments
10
10
{
11
11
Sandbox , Production
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ protected string ApiBaseUrl
35
35
{
36
36
get
37
37
{
38
- return EnvironemntManager . Environemnt == EnvironemntManager . Environments . Sandbox ? AmazonSandboxUrl : AmazonProductionUrl ;
38
+ return EnvironmentManager . Environment == EnvironmentManager . Environments . Sandbox ? AmazonSandboxUrl : AmazonProductionUrl ;
39
39
}
40
40
}
41
41
You can’t perform that action at this time.
0 commit comments