diff --git a/000-br-bk-go-tour/05-pointers/README.md b/000-br-bk-go-tour/05-pointers/README.md index eda4c33..85370a2 100644 --- a/000-br-bk-go-tour/05-pointers/README.md +++ b/000-br-bk-go-tour/05-pointers/README.md @@ -545,16 +545,16 @@ Count how many times the basketball is passed in this [VIDEO: Count the passes]( // like this func createUser() *user { u := user{"James", 32} -} return &u +} ``` ```go // NOT like this func createUser() *user { u := &user{"James", 32} -} return u +} ``` # Coupons for Go courses @@ -568,4 +568,4 @@ func createUser() *user { ![Blaise Pascal](https://github.com/GoesToEleven/learn-to-code-go-version-03/blob/main/000-br-bk-go-tour/05-pointers/images/bp.png) -source: https://upload.wikimedia.org/wikipedia/commons/1/1d/Pascal_Pajou_Louvre_RF2981.jpg \ No newline at end of file +source: https://upload.wikimedia.org/wikipedia/commons/1/1d/Pascal_Pajou_Louvre_RF2981.jpg