about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-05-23 22:26:49 -0700
committerKartik K. Agaram <vc@akkartik.com>2021-05-23 22:26:49 -0700
commitf32e8035c74c8fc6a87358ca7ecee295e6f6f260 (patch)
treed818e2a3fea98333bc129fbf747023cc1ae4ec9d
parent7fa01639419f244f2f7387967ab72aa6c52bd2fe (diff)
downloadmu-f32e8035c74c8fc6a87358ca7ecee295e6f6f260.tar.gz
.
-rw-r--r--shell/trace.mu2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/trace.mu b/shell/trace.mu
index 30a11582..da61df8c 100644
--- a/shell/trace.mu
+++ b/shell/trace.mu
@@ -152,7 +152,7 @@ fn trace _self: (addr trace), label: (addr array byte), message: (addr stream by
     write message, "  - find a smaller sub-computation to test,\n"
     write message, "  - allocate more space to the trace in initialize-sandbox\n"
     write message, "    (shell/sandbox.mu), or\n"
-    write message, "  - move the computation to 'main' and run it using ctrl-s"
+    write message, "  - move the computation to 'main' and run it using ctrl-r"
     initialize-trace-line 0/depth, "error", message, dest
     increment *index-addr
     return
/a> 141 142 143 144 145 146 147 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 267 268