summaryrefslogtreecommitdiffstats
path: root/vendor/xorm.io/xorm/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/xorm.io/xorm/README.md')
-rw-r--r--vendor/xorm.io/xorm/README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/vendor/xorm.io/xorm/README.md b/vendor/xorm.io/xorm/README.md
index ed866224f9..6738083943 100644
--- a/vendor/xorm.io/xorm/README.md
+++ b/vendor/xorm.io/xorm/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()