about summary refs log tree commit diff stats
path: root/ntranslate
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2019-08-31 20:43:41 -0700
committerKartik Agaram <vc@akkartik.com>2019-08-31 20:43:41 -0700
commite97b446ac3023d39d190911074850e686aa5f3aa (patch)
tree6d32495cf8c6179de27d334dcc3710b2fc0ea283 /ntranslate
parenta21fb73d0421960a8a0b746827455b650346978b (diff)
downloadmu-e97b446ac3023d39d190911074850e686aa5f3aa.tar.gz
5594 - rename 'desugar' to 'sigils'
There's going to be multiple forms of syntax sugar going forward.
Diffstat (limited to 'ntranslate')
-rwxr-xr-xntranslate4
1 files changed, 2 insertions, 2 deletions
diff --git a/ntranslate b/ntranslate
index 909d2b99..c29794e6 100755
--- a/ntranslate
+++ b/ntranslate
@@ -15,9 +15,9 @@ set -e
 
 ./build
 
-cat $*          |apps/desugar  > a.desugar
+cat $*          |apps/sigils   > a.sigils
 
-cat a.desugar   |apps/tests    > a.tests
+cat a.sigils    |apps/tests    > a.tests
 
 cat a.tests     |apps/dquotes  > a.dquotes
 
34 135 136 137 138 139 140 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