From e1bb9ed79db438962405331683774f6ba633d3f3 Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Thu, 7 Dec 2017 00:48:21 -0500 Subject: [PATCH] fix typos --- Commands/Weather.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Commands/Weather.cs b/Commands/Weather.cs index 5cf5901..dac1b91 100644 --- a/Commands/Weather.cs +++ b/Commands/Weather.cs @@ -34,7 +34,7 @@ namespace dotbot.Commands public async Task LookupWeatherForUser([Summary("user to check time for")] IUser user) { // TODO: check if they're in DB - // TODO: convert to tz + // TODO: look up their weather await ReplyAsync($"it's __ weather for {user.Mention}"); } @@ -43,7 +43,7 @@ namespace dotbot.Commands [Summary("look up the weather at a specified location")] public async Task LookupWeather([Remainder] [Summary("location")] string location) { - // TODO: API lookup + // TODO: API lookup for location await ReplyAsync($"the weather in {location} is crap"); } @@ -54,7 +54,7 @@ namespace dotbot.Commands { // TODO: lookup location detail // TODO: save to db - await ReplyAsync($"you location has been saved as {location}"); + await ReplyAsync($"your location has been saved as {location}"); } }