From 13c1d0db2c5967d442b5b8088f2a6286c74b4242 Mon Sep 17 00:00:00 2001 From: Marc Date: Tue, 23 May 2023 14:02:02 +0200 Subject: [PATCH] Update docs/docs/docs/01-core/database/02-transactions.md Co-authored-by: Ben Irvin --- docs/docs/docs/01-core/database/02-transactions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/docs/01-core/database/02-transactions.md b/docs/docs/docs/01-core/database/02-transactions.md index 2ce2218e4c..74d9d320fd 100644 --- a/docs/docs/docs/01-core/database/02-transactions.md +++ b/docs/docs/docs/01-core/database/02-transactions.md @@ -93,7 +93,7 @@ Transactions should be used in cases where multiple operations should be execute ## When not to use transactions -Transactions should not be used for small or simple sets of operations since it can result in performance penalties. +Transactions should not be used for operations that are not dependent on each other since it can result in performance penalties. ## Potential problems of transactions