From 4a6b8c29bf281da48b2a76a7f0d3d7129dd04d24 Mon Sep 17 00:00:00 2001 From: sylba2050 Date: Mon, 27 Jul 2020 09:29:33 +0000 Subject: [PATCH] Fix typo (#1748) Fix typo Co-authored-by: Masataka Hisasue Reviewed-on: https://gitea.com/xorm/xorm/pulls/1748 Reviewed-by: Lunny Xiao --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ed866224..67380839 100644 --- a/README.md +++ b/README.md @@ -313,7 +313,7 @@ err := engine.Where(builder.NotIn("a", 1, 2).And(builder.In("b", "c", "d", "e")) // SELECT id, name ... FROM user WHERE a NOT IN (?, ?) AND b IN (?, ?, ?) ``` -* Multiple operations in one go routine, no transation here but resue session memory +* Multiple operations in one go routine, no transaction here but resue session memory ```Go session := engine.NewSession() @@ -336,7 +336,7 @@ if _, err := session.Exec("delete from userinfo where username = ?", user2.Usern return nil ``` -* Transation should be on one go routine. There is transaction and resue session memory +* Transaction should be on one go routine. There is transaction and resue session memory ```Go session := engine.NewSession()