File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -42,19 +42,19 @@ const WeatherProvider = Class.extend({
4242 // This method should start the API request to fetch the current weather.
4343 // This method should definitely be overwritten in the provider.
4444 fetchCurrentWeather ( ) {
45- Log . warn ( `Weather provider: ${ this . providerName } does not subclass the fetchCurrentWeather method.` ) ;
45+ Log . warn ( `Weather provider: ${ this . providerName } does not override the fetchCurrentWeather method.` ) ;
4646 } ,
4747
4848 // This method should start the API request to fetch the weather forecast.
4949 // This method should definitely be overwritten in the provider.
5050 fetchWeatherForecast ( ) {
51- Log . warn ( `Weather provider: ${ this . providerName } does not subclass the fetchWeatherForecast method.` ) ;
51+ Log . warn ( `Weather provider: ${ this . providerName } does not override the fetchWeatherForecast method.` ) ;
5252 } ,
5353
5454 // This method should start the API request to fetch the weather hourly.
5555 // This method should definitely be overwritten in the provider.
5656 fetchWeatherHourly ( ) {
57- Log . warn ( `Weather provider: ${ this . providerName } does not subclass the fetchWeatherHourly method.` ) ;
57+ Log . warn ( `Weather provider: ${ this . providerName } does not override the fetchWeatherHourly method.` ) ;
5858 } ,
5959
6060 // This returns a WeatherDay object for the current weather.
You can’t perform that action at this time.
0 commit comments