about summary refs log tree commit diff stats
path: root/Readme.md
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-03-10 15:06:58 -0800
committerKartik K. Agaram <vc@akkartik.com>2016-03-10 15:06:58 -0800
commitb893d565dd7ad9c5fc24a2c30ee6ba20c3ba0c67 (patch)
tree1c36a1aabf69e56e216f14a880ab8880803c8855 /Readme.md
parent5914514b7371facbdb9c1eb51a5ba43bcca038f0 (diff)
downloadmu-b893d565dd7ad9c5fc24a2c30ee6ba20c3ba0c67.tar.gz
2757
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 1ef5a3af..5d36348f 100644
--- a/Readme.md
+++ b/Readme.md
@@ -16,9 +16,9 @@ In this quest, Mu is currently experimenting with the following mechanisms:
 1. New, testable interfaces for the operating system. For example, printing to
    screen explicitly takes a screen object, so it can be called on the real
    screen, or on a fake inside tests, so that we can then check the expected
-   state of the screen at the end of a test. For example, here's a test for a
-   little text-mode chessboard program in Mu (delimiting the edge of the
-   'screen' with periods):
+   state of the screen at the end of a test. Here's a test for a little
+   text-mode chessboard program in Mu (delimiting the edge of the 'screen'
+   with periods):
    <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img alt='a screen test' src='html/chessboard-test.png'>
    <br>We're building up similarly *dependency-injected* interfaces to the
    keyboard, mouse, touch screen, disk, network, &hellip;