From 635aadaf23362eaae5d9ec0e83bbdd3111fd5b7b Mon Sep 17 00:00:00 2001 From: Snorre Selmer Date: Wed, 18 Jan 2023 12:39:21 +0100 Subject: [PATCH] Fixed typo --- mips-programming-101.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mips-programming-101.md b/mips-programming-101.md index ca2473a..4724210 100644 --- a/mips-programming-101.md +++ b/mips-programming-101.md @@ -112,7 +112,7 @@ and slt HeaterOn CurrentTemperature MinimumTemperature ``` -They could do the exact same thing, but the bottom one actually explains what's going on. And it's still shorter that 57 characters. +They could do the exact same thing, but the bottom one actually explains what's going on. And it's still shorter than 57 characters. If you're juggling 10+ registers in your code without naming them, the chances of getting them mixed up increases greatly. And if you do make a mistake somewhere, trying to follow the code can be more complicated than if you used named variables.