diff --git a/concepts/time/about.md b/concepts/time/about.md index 57628ff07..3a1b5ec5b 100644 --- a/concepts/time/about.md +++ b/concepts/time/about.md @@ -32,8 +32,8 @@ import ( func main() { t := time.Date(1995,time.September,22,13,0,0,0,time.UTC) - formatedTime := t.Format("Mon, 01/02/2006, 15:04") // string - fmt.Println(formatedTime) + formattedTime := t.Format("Mon, 01/02/2006, 15:04") // string + fmt.Println(formattedTime) } // => Fri, 09/22/1995, 13:00 diff --git a/concepts/time/introduction.md b/concepts/time/introduction.md index 26c6be4cf..235e4e6ff 100644 --- a/concepts/time/introduction.md +++ b/concepts/time/introduction.md @@ -32,8 +32,8 @@ import ( func main() { t := time.Date(1995,time.September,22,13,0,0,0,time.UTC) - formatedTime := t.Format("Mon, 01/02/2006, 15:04") // string - fmt.Println(formatedTime) + formattedTime := t.Format("Mon, 01/02/2006, 15:04") // string + fmt.Println(formattedTime) } // => Fri, 09/22/1995, 13:00 diff --git a/exercises/concept/booking-up-for-beauty/.docs/introduction.md b/exercises/concept/booking-up-for-beauty/.docs/introduction.md index 26c6be4cf..3a042b8d0 100644 --- a/exercises/concept/booking-up-for-beauty/.docs/introduction.md +++ b/exercises/concept/booking-up-for-beauty/.docs/introduction.md @@ -32,8 +32,8 @@ import ( func main() { t := time.Date(1995,time.September,22,13,0,0,0,time.UTC) - formatedTime := t.Format("Mon, 01/02/2006, 15:04") // string - fmt.Println(formatedTime) + formattedTimee := t.Format("Mon, 01/02/2006, 15:04") // string + fmt.Println(formattedTime) } // => Fri, 09/22/1995, 13:00