Skip to content

Commit bfe483b

Browse files
committed
change name
1 parent 493303a commit bfe483b

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Source/FikaAmazonAPI/Utils/MarketPlace.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ public MarketPlace() { }
2828

2929
public static MarketPlace GetMarketPlaceByID(string id)
3030
{
31-
var marketpalce = _allMarketplaces.FirstOrDefault(a => a.ID == id);
32-
if (marketpalce == null)
31+
var marketplace = _allMarketplaces.FirstOrDefault(a => a.ID == id);
32+
if (marketplace == null)
3333
throw new AmazonInvalidInputException($"InvalidInput, MarketPlace or MarketPlaceID cannot be null for both!");
3434

35-
return marketpalce;
35+
return marketplace;
3636
}
3737

3838
public static MarketPlace GetMarketplaceByCountryCode(string countryCode)

0 commit comments

Comments
 (0)