diff options
author | Adam Bard <github@adambard.com> | 2020-05-19 08:23:24 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-19 08:23:24 -0700 |
commit | b7ac44c4051608b0ae7ef86665057ac876cf7197 (patch) | |
tree | e24c8ec31f5961484ae21c57569f0b189daa2e5d | |
parent | f21a011eb4923c59343ec8f8dc1ab3166e9de6ba (diff) | |
parent | 729d131a91810547b0478d0fd338937b010ae005 (diff) |
Merge pull request #3925 from sjbutler/patch-1
[MIPS/en] minor fix for uncommented comment line
-rw-r--r-- | mips.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mips.html.markdown b/mips.html.markdown index 7f759bec..33d4f87c 100644 --- a/mips.html.markdown +++ b/mips.html.markdown @@ -209,7 +209,7 @@ gateways and routers. ## LOOPS ## _loops: # The basic structure of loops is having an exit condition and a jump - instruction to continue its execution + # instruction to continue its execution li $t0, 0 while: bgt $t0, 10, end_while # While $t0 is less than 10, |