From 3962a089fc08e58181f54eda422a0d07d4bfa4a9 Mon Sep 17 00:00:00 2001 From: Chia-Chi Hsu Date: Mon, 14 Feb 2022 13:01:25 +0000 Subject: [PATCH] _content/doc/tutorial: fix number of rows in database-access.md "Add three rows with values" should be "Add four rows with values". Change-Id: I82103908292faf95c1b6c62ca57d6f47b0249ccb GitHub-Last-Rev: 2a0240372717014ccff4c511b71a43ba846db760 GitHub-Pull-Request: golang/website#126 Reviewed-on: https://go-review.googlesource.com/c/website/+/385594 Reviewed-by: DO NOT USE Trust: Dmitri Shuralyov --- _content/doc/tutorial/database-access.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_content/doc/tutorial/database-access.md b/_content/doc/tutorial/database-access.md index 3718180c01..70955ccb40 100644 --- a/_content/doc/tutorial/database-access.md +++ b/_content/doc/tutorial/database-access.md @@ -159,7 +159,7 @@ but most DBMSes have their own CLI with similar features. * Create an `album` table with four columns: `title`, `artist`, and `price`. Each row's `id` value is created automatically by the DBMS. - * Add three rows with values. + * Add four rows with values. 7. From the `mysql` command prompt, run the script you just created.