Skip to content

Commit 4a6b8c2

Browse files
sylba2050Masataka Hisasue
authored andcommitted
Fix typo (#1748)
Fix typo Co-authored-by: Masataka Hisasue <[email protected]> Reviewed-on: https://gitea.com/xorm/xorm/pulls/1748 Reviewed-by: Lunny Xiao <[email protected]>
1 parent fe3bc38 commit 4a6b8c2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ err := engine.Where(builder.NotIn("a", 1, 2).And(builder.In("b", "c", "d", "e"))
313313
// SELECT id, name ... FROM user WHERE a NOT IN (?, ?) AND b IN (?, ?, ?)
314314
```
315315

316-
* Multiple operations in one go routine, no transation here but resue session memory
316+
* Multiple operations in one go routine, no transaction here but resue session memory
317317

318318
```Go
319319
session := engine.NewSession()
@@ -336,7 +336,7 @@ if _, err := session.Exec("delete from userinfo where username = ?", user2.Usern
336336
return nil
337337
```
338338

339-
* Transation should be on one go routine. There is transaction and resue session memory
339+
* Transaction should be on one go routine. There is transaction and resue session memory
340340

341341
```Go
342342
session := engine.NewSession()

0 commit comments

Comments
 (0)