From 722b55d55484d1b3689b287ec5178fe1e3f40ef0 Mon Sep 17 00:00:00 2001 From: Chris Martin Date: Thu, 9 Jan 2025 17:05:51 -0700 Subject: [PATCH] Fix typo in IsolationLevel comment --- .../Database/Persist/SqlBackend/Internal/IsolationLevel.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/persistent/Database/Persist/SqlBackend/Internal/IsolationLevel.hs b/persistent/Database/Persist/SqlBackend/Internal/IsolationLevel.hs index 951a48cf1..fc988d25c 100644 --- a/persistent/Database/Persist/SqlBackend/Internal/IsolationLevel.hs +++ b/persistent/Database/Persist/SqlBackend/Internal/IsolationLevel.hs @@ -3,7 +3,7 @@ module Database.Persist.SqlBackend.Internal.IsolationLevel where import Data.String (IsString(..)) -- | Please refer to the documentation for the database in question for a full --- overview of the semantics of the varying isloation levels +-- overview of the semantics of the varying isolation levels data IsolationLevel = ReadUncommitted | ReadCommitted | RepeatableRead