From bc7269a776f28e0ec11b97fcdca91b0737f27a9d Mon Sep 17 00:00:00 2001 From: Pekka Enberg Date: Thu, 13 Apr 2023 10:41:01 +0300 Subject: [PATCH] Fix typo --- core/mvcc/database/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/mvcc/database/src/lib.rs b/core/mvcc/database/src/lib.rs index a3b2e105f..44708bb6a 100644 --- a/core/mvcc/database/src/lib.rs +++ b/core/mvcc/database/src/lib.rs @@ -15,7 +15,7 @@ //! transaction T_n but not yet committed. The MVCC algorithm prevents dirty //! reads by validating that a row version is visible to transaction T_m. //! -//! * A *fuzzy read* (non-repetable read) occurs when transaction T_m reads a +//! * A *fuzzy read* (non-repeatable read) occurs when transaction T_m reads a //! different value in the course of the transaction because another //! transaction T_n has updated the value. //!