From 190b87ed64ee32892d65efb2a2902997b5fe6509 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thadd=C3=A9e=20Tyl?= Date: Wed, 17 Apr 2019 10:51:55 +0200 Subject: [PATCH] Fix sqlax typo in README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 933d695..1d46d09 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ With sqalx you can easily create reusable and composable functions that can be c $ go get github.com/heetch/sqalx ``` -### Import sqlax +### Import sqalx ```go import "github.com/heetch/sqalx" @@ -76,7 +76,7 @@ func createUser(node sqalx.Node) error { return tx.Commit() } -func updateGroups(node sqlax.Node) error { +func updateGroups(node sqalx.Node) error { // Notice we are creating a new transaction. // This would normally cause a dead lock without sqalx. tx, err := node.Beginx()