about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-03-03 23:28:46 -0800
committerKartik K. Agaram <vc@akkartik.com>2021-03-03 23:28:46 -0800
commitcd24db08f0e017bd5d2f6066e9e60371a86fa9ad (patch)
tree424d8b847fc3c9f1509a5218a99b4a379685f158
parent3b81d74813aff953af393010adeb699f227182ed (diff)
downloadmu-cd24db08f0e017bd5d2f6066e9e60371a86fa9ad.tar.gz
7844
-rw-r--r--README.md15
1 files changed, 8 insertions, 7 deletions
diff --git a/README.md b/README.md
index ca2caf4e..8afba97b 100644
--- a/README.md
+++ b/README.md
@@ -29,13 +29,14 @@ compatibility with the past. ([More details.](http://akkartik.name/akkartik-conv
 Tests are a key mechanism here for creating a computer that others can make
 their own. I want to encourage a style of active and interactive reading with
 Mu. If something doesn't make sense, try changing it and see what tests break.
-Any breaking change should break some well-named test somewhere. Consequently,
-any manual test should be easy to turn into a reproducible automated test. Mu
-is a testbed for providing this guarantee. It exposes testable interfaces for
-hardware using dependency injection so that tests can run on -- and make
-assertions against -- fake hardware. It also is an experiment in [automated
-white-box testing](http://akkartik.name/post/tracing-tests) which promises
-robust tests for performance, concurrency, fault-tolerance, etc.
+Any breaking change should break some well-named test somewhere. This requirement
+implies that any manual test should be easy to turn into a reproducible
+automated test. Mu is a testbed for providing this guarantee. It exposes
+testable interfaces for hardware using dependency injection so that tests can
+run on -- and make assertions against -- fake hardware. It also is an experiment
+in [automated white-box testing](http://akkartik.name/post/tracing-tests)
+which promises robust tests for performance, concurrency, fault-tolerance,
+etc.
 
 Currently Mu requires a 32-bit x86 processor.
 
#n162'>162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282