From c69cb29eddde7a90fa428d6b2cc45c8082ca7c21 Mon Sep 17 00:00:00 2001 From: Taylor Bockman Date: Thu, 11 Jan 2018 10:00:49 -0800 Subject: [PATCH] Fix a few more typos --- README.md | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 12e3175..4d048d6 100644 --- a/README.md +++ b/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