about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--html/mu_instructions.html2
-rw-r--r--mu_instructions2
2 files changed, 2 insertions, 2 deletions
diff --git a/html/mu_instructions.html b/html/mu_instructions.html
index fef2054e..1c50a228 100644
--- a/html/mu_instructions.html
+++ b/html/mu_instructions.html
@@ -27,7 +27,7 @@ body { font-family: monospace; color: #000000; background-color: #c6c6c6; }
 
 Mu is a statement-oriented language. Blocks consist of flat lists of instructions.
 The following chart shows all the instruction forms supported by Mu, along
-with the instruction they're translated to. Variables of the form <span class="Constant">&quot;var/reg&quot;</span>
+with the instruction they're translated to. Variables of the form 'var/reg'
 live in a register, and other variables are assumed to live on the stack at
 some 'stack-offset' from ebp.
 
diff --git a/mu_instructions b/mu_instructions
index 6a450ec0..f6b05faa 100644
--- a/mu_instructions
+++ b/mu_instructions
@@ -2,7 +2,7 @@
 
 Mu is a statement-oriented language. Blocks consist of flat lists of instructions.
 The following chart shows all the instruction forms supported by Mu, along
-with the instruction they're translated to. Variables of the form "var/reg"
+with the instruction they're translated to. Variables of the form 'var/reg'
 live in a register, and other variables are assumed to live on the stack at
 some 'stack-offset' from ebp.
 
0'>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 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