From 0be8688553bf25be514871ca3d9d6c4f56f5c5d7 Mon Sep 17 00:00:00 2001 From: Raf Czlonka Date: Tue, 31 Mar 2020 00:45:38 +0100 Subject: [PATCH] Move hyphen-minus to the right place While there, don't terminate a list item with a full stop ('.'). --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e51048ee73..4daaaebf6d 100644 --- a/README.md +++ b/README.md @@ -4,13 +4,13 @@ > > "SQL is actually pretty great" -sqlc generates **fully-type safe idiomatic Go code** from SQL. Here's how it +sqlc generates **fully type-safe idiomatic Go code** from SQL. Here's how it works: 1. You write SQL queries 1. You run sqlc to generate Go code that presents type-safe interfaces to those queries -1. You write application code that calls the methods sqlc generated. +1. You write application code that calls the methods sqlc generated Seriously, it's that easy. You don't have to write any boilerplate SQL querying code ever again.