From 5f0a43cbc024018d44ca257ded5cfe3a3955e1ba Mon Sep 17 00:00:00 2001 From: "Gerasimos (Makis) Maropoulos" Date: Sun, 30 Aug 2020 18:25:34 +0300 Subject: [PATCH] minor: sqlx example: indentation --- _examples/database/orm/sqlx/main.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/_examples/database/orm/sqlx/main.go b/_examples/database/orm/sqlx/main.go index 3abe3b32..2779b43c 100644 --- a/_examples/database/orm/sqlx/main.go +++ b/_examples/database/orm/sqlx/main.go @@ -31,9 +31,9 @@ type Person struct { const schema = ` CREATE TABLE IF NOT EXISTS person ( person_id INTEGER PRIMARY KEY, - first_name text, - last_name text, - email text + first_name text, + last_name text, + email text );` func main() {