We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 493303a commit bfe483bCopy full SHA for bfe483b
1 file changed
Source/FikaAmazonAPI/Utils/MarketPlace.cs
@@ -28,11 +28,11 @@ public MarketPlace() { }
28
29
public static MarketPlace GetMarketPlaceByID(string id)
30
{
31
- var marketpalce = _allMarketplaces.FirstOrDefault(a => a.ID == id);
32
- if (marketpalce == null)
+ var marketplace = _allMarketplaces.FirstOrDefault(a => a.ID == id);
+ if (marketplace == null)
33
throw new AmazonInvalidInputException($"InvalidInput, MarketPlace or MarketPlaceID cannot be null for both!");
34
35
- return marketpalce;
+ return marketplace;
36
}
37
38
public static MarketPlace GetMarketplaceByCountryCode(string countryCode)
0 commit comments