about summary refs log tree commit diff stats
path: root/tutorial/index.md
diff options
context:
space:
mode:
Diffstat (limited to 'tutorial/index.md')
-rw-r--r--tutorial/index.md13
1 files changed, 7 insertions, 6 deletions
diff --git a/tutorial/index.md b/tutorial/index.md
index 95eec2bb..e23e0542 100644
--- a/tutorial/index.md
+++ b/tutorial/index.md
@@ -254,16 +254,17 @@ skeleton. We'll try out the following statements, one by one:
 
 Before typing in each one, write down whether you expect an error. After
 trying it out, compare your answer. It can also be useful to write down the
-exact error you see, and what it means, in your own words. Flipping the
-"runbook" that way can be a useful aid to memory when you see an error for
-real, during a real programming session.
+exact error you see, and what it means, in your own words.
 
 (Also, don't forget to delete the statement you typed in before you move on to
 trying out the next one.)
 
-Runbooks are a handy tool for working with computers. In a runbook you write
-instructions to your future self or for others you're working with. They're
-instructions for programming people, not computers.
+Making notes about error messages is an example of a more general trick called
+a [runbook](https://en.wikipedia.org/wiki/Runbook). Runbooks are aids to
+memory, scripts for what to do when you run into a problem. People think worse
+in the presence of stress, and runbooks can help reduce the need for thinking
+in the presence of stress. They're a way of programming people (your future
+self or others) rather than computers.
 
 ## Task 7: variables in registers, variables in memory (again)
 
'n148' href='#n148'>148 149 150 151 152 153 154 155 156 157 158 159 160 161 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