From 51f1092c269d10b0fe15f57278e118a67afd19b0 Mon Sep 17 00:00:00 2001 From: Jason Florentino <72258481+jasonflorentino@users.noreply.github.com> Date: Mon, 31 Jul 2023 21:54:30 -0400 Subject: [PATCH] Fix typos in README.md --- 05-misc/05-sqlite/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/05-misc/05-sqlite/README.md b/05-misc/05-sqlite/README.md index 51df833..cf96695 100644 --- a/05-misc/05-sqlite/README.md +++ b/05-misc/05-sqlite/README.md @@ -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 @@ -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