Skip to content

Fix typos in README.md #19

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

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
4 changes: 2 additions & 2 deletions 05-misc/05-sqlite/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ To talk to your database via Go, there's some steps you need to take in order:

## Assignment

In this assignment, we will create a Go program that's able to write and write to the database. We will go all the way from creating the database with the console to writing the Go code needed.
In this assignment, we will create a Go program that's able to read and write to the database. We will go all the way from creating the database with the console to writing the Go code needed.

### Create the database and populate it

Expand Down Expand Up @@ -261,7 +261,7 @@ Next, we will add a function capable of reading data.
}
```

Not the usage of `Scan()` and variables being sent in as references so the response is written to them.
Note the usage of `Scan()` and variables being sent in as references so the response is written to them.

### Create data

Expand Down