about summary refs log tree commit diff stats
path: root/edit/010-warnings.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-09-30 00:07:33 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-09-30 01:01:34 -0700
commita0fc38c9e1584960ecad0eb8d58a5d4e6995ad87 (patch)
tree4a2c9a8120ea6d59dd371b575b0d1215a2c6aaaf /edit/010-warnings.mu
parentc6b3b04ac85f05065fef9626270d914dc4428484 (diff)
downloadmu-a0fc38c9e1584960ecad0eb8d58a5d4e6995ad87.tar.gz
2218 - check types in instructions much earlier
Front-loads it a bit more than I'd like, but the payoff is that other
recipes will now be able to describe the type checks right next to their
operation.

I'm also introducing a new use of /raw with literals to indicate unsafe
typecasts.
Diffstat (limited to 'edit/010-warnings.mu')
-rw-r--r--edit/010-warnings.mu2
1 files changed, 1 insertions, 1 deletions
diff --git a/edit/010-warnings.mu b/edit/010-warnings.mu
index f5244a8d..6c93a95c 100644
--- a/edit/010-warnings.mu
+++ b/edit/010-warnings.mu
@@ -132,7 +132,7 @@ recipe foo [
     .recipe foo [                                      ┊━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━.
     .  x <- copy 0                                     ┊                                                 .
     .]                                                 ┊                                                 .
-    .missing type in 'x <- copy 0'                     ┊                                                 .
+    .missing type for x in 'x <- copy 0'               ┊                                                 .
     .┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┊                                                 .
     .                                                  ┊                                                 .
   ]