diff --git a/ExprPrimaryNodes.py b/ExprPrimaryNodes.py
index c430e29468fbb1aefbb3e9896c159ece49abd90c..3fa30e00ba8a56132a6a602a21866fc79eaca7ca 100644
--- a/ExprPrimaryNodes.py
+++ b/ExprPrimaryNodes.py
@@ -760,8 +760,10 @@ class ExprNode(ASTNode):
             self.code += self.left.code
 
             if self.op == '&&':
+                # if left result == false, break out
                 self.code += p("cmp", "eax", "0")
             elif self.op == '||':
+                # if left result == true, break out
                 self.code += p("cmp", "eax", "1")
 
             self.code += p("je", endLabel, "", " breaking out of " + self.op)
@@ -786,7 +788,7 @@ class ExprNode(ASTNode):
             self.code += p(endLabel + ":", "")
             return
 
-        # String Add TODO
+        # String Add
         if (self.left.myType.name =='java.lang.String' or self.right.myType.name =='java.lang.String') and self.op == '+':
             # ( String.valueOf(right) ).concat( left )
             if not hasattr(self.concatMethodInv, "code"):