Skip to content

Commit

Permalink
Typo issue
Browse files Browse the repository at this point in the history
  • Loading branch information
stephanecodo committed Jun 4, 2014
1 parent 7b98ef1 commit a96d25a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions WeatherNet/Forecast.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ namespace WeatherNet
public class Forecast
{
/// <summary>
/// Get the forecast for a specificcity by indicating its 'OpenwWeatherMap' identifier.
/// Get the forecast for a specific city by indicating its 'OpenwWeatherMap' identifier.
/// </summary>
/// <param name="id">City 'OpenwWeatherMap' identifier.</param>
/// <returns> The forecast information.</returns>
Expand All @@ -31,7 +31,7 @@ public static Result<WeatherForecast> GetByCityId(int id)
}

/// <summary>
/// Get the forecast for a specificcity by indicating its 'OpenwWeatherMap' identifier, language and units (metric or imperial).
/// Get the forecast for a specifi ccity by indicating its 'OpenwWeatherMap' identifier, language and units (metric or imperial).
/// </summary>
/// <param name="id">City 'OpenwWeatherMap' identifier.</param>
/// <param name="language">The language of the information returned (example: English - en, Russian - ru, Italian - it, Spanish - sp, Ukrainian - ua, German - de, Portuguese - pt, Romanian - ro, Polish - pl, Finnish - fi, Dutch - nl, French - fr, Bulgarian - bg, Swedish - se, Chinese Traditional - zh_tw, Chinese Simplified - zh_cn, Turkish - tr , Czech - cz, Galician - gl, Vietnamese - vi, Arabic - ar, Macedonian - mk, Slovak - sk).</param>
Expand Down Expand Up @@ -98,7 +98,7 @@ public static Result<WeatherForecast> GetByCityName(String city, String country,
}

/// <summary>
/// Get the forecast for a specificcity by indicating its coordinates.
/// Get the forecast for a specific city by indicating its coordinates.
/// </summary>
/// <param name="lat">Latitud of the city.</param>
/// <param name="lon">Longitude of the city.</param>
Expand All @@ -117,7 +117,7 @@ public static Result<WeatherForecast> GetByCoordinates(double lat, double lon)
}

/// <summary>
/// Get the forecast for a specificcity by indicating its coordinates, language and units (metric or imperial).
/// Get the forecast for a specific city by indicating its coordinates, language and units (metric or imperial).
/// </summary>
/// <param name="lat">Latitud of the city.</param>
/// <param name="lon">Longitude of the city.</param>
Expand Down

0 comments on commit a96d25a

Please sign in to comment.