diff --git a/src/color/Gradient.js b/src/color/Gradient.js
index cddb7da9..acf36038 100644
--- a/src/color/Gradient.js
+++ b/src/color/Gradient.js
@@ -17,7 +17,7 @@
 var Gradient = this.Gradient = Base.extend({
 	beans: true,
 
-	// TODO: should type here be called 'radial' and have it
+	// TODO: Should type here be called 'radial' and have it
 	// receive a boolean value?
 	initialize: function(stops, type) {
 		this.setStops(stops || ['white', 'black']);
diff --git a/src/color/GradientStop.js b/src/color/GradientStop.js
index 9a0d854e..baf8dfac 100644
--- a/src/color/GradientStop.js
+++ b/src/color/GradientStop.js
@@ -14,7 +14,7 @@
  * All rights reserved.
  */
 
-// TODO: support midPoint? (initial tests didn't look nice)
+// TODO: Support midPoint? (initial tests didn't look nice)
 var GradientStop = this.GradientStop = Base.extend({
 	beans: true,
 
diff --git a/src/item/Item.js b/src/item/Item.js
index cb686eaf..024465be 100644
--- a/src/item/Item.js
+++ b/src/item/Item.js
@@ -218,8 +218,6 @@ var Item = this.Item = Base.extend({
 			}
 		} else {
 			if ((selected = !!selected) != this._selected) {
-				// TODO: when an item is removed or moved to another
-				// project, it needs to be removed from _selectedItems
 				this._selected = selected;
 				this._project._selectItem(this, selected);
 			}
@@ -305,7 +303,7 @@ var Item = this.Item = Base.extend({
 
 	// TODO: get/setIsolated (print specific feature)
 	// TODO: get/setKnockout (print specific feature)
-	// TODO get/setAlphaIsShape
+	// TODO: get/setAlphaIsShape
 	// TODO: get/setData
 
 	/**