diff --git a/devNotes/scene-guide.txt b/devNotes/scene-guide.txt
index ee0859f2bdfbd852c066a729db6165aa20e4ca0e..7df014383927f892592c5e59e9712086dda1a461 100644
--- a/devNotes/scene-guide.txt
+++ b/devNotes/scene-guide.txt
@@ -112,7 +112,7 @@ And then fill it in later than it is to end up with a situation where you have a
 	<<set _targetOrifice = "vagina">>
 <<else>>
 	<<set _targetOrifice = "asshole">>
-<</if>
+<</if>>
 And then, when you need it, do "you fuck her _targetOrifice" in sixteen different places without having the pain in the ass of copy/pasting the same if/else clause every time.
 
 3. INDENT YOUR LOGIC. USE TABS. I'm serious. Don't question me. It will make EVERYONE hate you, when they have to deal with your code, if it's not indented properly.
@@ -135,8 +135,8 @@ This is much easier to read:
 		<<if $cond7>>
 			<<if $cond8>>
 				whatever
-			</if>
-		</if>>
+			<</if>>
+		<</if>>
 	<</if>>
 <</if>>
 than this:
@@ -158,8 +158,8 @@ whatever
 <<if $cond7>>
 <<if $cond8>>
 whatever
-</if>
-</if>>
+<</if>>
+<</if>>
 <</if>>
 <</if>>