Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor fix in Code review Section in README.md #5

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions 000-br-bk-go-tour/05-pointers/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
source: https://upload.wikimedia.org/wikipedia/commons/1/1d/Pascal_Pajou_Louvre_RF2981.jpg