Skip to content

Commit

Permalink
Update introduction.md (#2711)
Browse files Browse the repository at this point in the history
Co-authored-by: junedev <[email protected]>
  • Loading branch information
arimal199 and junedev authored Nov 23, 2023
1 parent acbcf89 commit a2a59c7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions concepts/time/about.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions concepts/time/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions exercises/concept/booking-up-for-beauty/.docs/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a2a59c7

Please sign in to comment.