Browse Source

Fix a few more typos

master
Taylor Bockman 6 years ago committed by GitHub
parent
commit
c69cb29edd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 14
      README.md

14
README.md

@ -127,12 +127,14 @@ Example:
option casemap:none
include \masm32\include\windows.inc
include \masm32\include\kernel32.inc
includelib \masm32\lib\kernel32.lib
.DATA
.CODE
start:
invoke ExitProcess,0
end start
start:
invoke ExitProcess, 0
end start
```
### Section Names
@ -153,9 +155,9 @@ includelib \masm32\lib\kernel32.lib
.DATA
.CODE
start:
invoke ExitProcess,0
end start
start:
invoke ExitProcess, 0
end start
```
### Variable Names

Loading…
Cancel
Save