about summary refs log tree commit diff stats
path: root/Readme.md
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2018-03-08 21:44:46 -0800
committerKartik K. Agaram <vc@akkartik.com>2018-03-08 21:44:46 -0800
commit2b9b1cf3867a63dda0a5ac92a5ad8c88fce6f0d1 (patch)
tree30776fd30a35bda7c9d79a52874be903d2749039 /Readme.md
parent816ffe20eb4d4df7a33d92c7305310226c19ff42 (diff)
downloadmu-2b9b1cf3867a63dda0a5ac92a5ad8c88fce6f0d1.tar.gz
4215
Diffstat (limited to 'Readme.md')
-rw-r--r--Readme.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/Readme.md b/Readme.md
index 798c9742..bbb714e0 100644
--- a/Readme.md
+++ b/Readme.md
@@ -36,9 +36,9 @@ easily without getting locked in to a single one as currently happens.
 In this quest, Mu is currently experimenting with the following mechanisms:
 
 1. New, testable interfaces for the operating system. Currently manual tests
-   are hard to automate because a file you assumed might vanish, the network
-   might go down, etc. To make manual tests reproducible it suffices to
-   improve the 15 or so OS syscalls through which a computer talks to the
+   are hard to automate because a file you rely on might be deleted, the
+   network might go down, etc. To make manual tests reproducible it suffices
+   to improve the 15 or so OS syscalls through which a computer talks to the
    outside world. We have to allow programs to transparently write to a fake
    screen, read from a fake disk/network, etc. In Mu, printing to screen
    explicitly takes a screen object, so it can be called on the real screen,