diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-09-30 23:31:43 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-09-30 23:31:43 -0700 |
commit | 56fe4cfb38f4dc5dceb6751ffae8ff4809893ccb (patch) | |
tree | b965de7c70cf36b26862f6743626ecbfe46a7ecb | |
parent | d855b0a0a5012c583a35dee57d03b66de895e164 (diff) | |
download | mu-56fe4cfb38f4dc5dceb6751ffae8ff4809893ccb.tar.gz |
2224
-rw-r--r-- | 021check_instruction.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/021check_instruction.cc b/021check_instruction.cc index 8f12b7ca..5b12af7c 100644 --- a/021check_instruction.cc +++ b/021check_instruction.cc @@ -1,6 +1,6 @@ -//: Introduce a new transform to check types in instructions before we start -//: running them. It'll be extensible, so that we can add type checks for new -//: recipes as we extend 'run' to support them. +//: Introduce a new transform to perform various checks in instructions before +//: we start running them. It'll be extensible, so that we can add checks for +//: new recipes as we extend 'run' to support them. :(after "int main") Transform.push_back(check_instruction); |