From ba9e8769ecb6745e4e1fb2fe0faca48ab05a15cb Mon Sep 17 00:00:00 2001
From: "Peter J. Keleher" <keleher@cs.umd.edu>
Date: Mon, 25 Nov 2019 17:20:19 -0500
Subject: [PATCH] auto

---
 README.md | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/README.md b/README.md
index 64f3fd7..7f5e631 100644
--- a/README.md
+++ b/README.md
@@ -58,7 +58,7 @@ tasks, you should remove those two files every time.
 
 Currently the only way to stop a runaway `testingX` is through killing it through Ctrl-C. If that doesn't work, try stopping it (Ctrl-Z), and then killing it using `kill %1`.
 
-### Your Task
+### Your Tasks
 
 Your task is to finish a few of the unfinished pieces in the two files (10
 points for each). Search for **TO BE IMPLEMENTED** in `transactions.py`
@@ -76,6 +76,8 @@ order.
 "Redo"-ing a transaction does not add any new log records, but it does modify
 the database. 
 
+Note that modifying the database a la `tup.setAttribute()` modifies the in-memory copy of the tuple, but does not push it to disk. You need to ensure that all such tuples make it to disk before adding the checkpoint record to the log.
+
 ### Testing
 
 **Locks**
-- 
GitLab