Skip to content

Commit 3c5df23

Browse files
committed
Use camel case convention
1 parent 10fa053 commit 3c5df23

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

CountryHelper.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@ public IEnumerable<Country> GetCountryData()
4848
/// </summary>
4949
/// <param name="ShortCode"></param>
5050
/// <returns>Country</returns>
51-
public Country GetCountryByCode(string ShortCode)
51+
public Country GetCountryByCode(string shortCode)
5252
{
53-
return _Countries.SingleOrDefault(c => c.CountryShortCode == ShortCode);
53+
return _Countries.SingleOrDefault(c => c.CountryShortCode == shortCode);
5454
}
5555

5656

0 commit comments

Comments
 (0)