diff --git a/src/entity/entity.js b/src/entity/entity.js
index e2c91936ff..a14e4a9fa0 100644
--- a/src/entity/entity.js
+++ b/src/entity/entity.js
@@ -39,7 +39,7 @@
image : null,
/**
- * specify a transparent color for the image in rgb format (rrggb or #rrggb)
+ * specify a transparent color for the image in rgb format (#rrggb)
* OPTIONAL
* (using this option will imply processing time on the image)
* @public
diff --git a/src/level/TMXLayer.js b/src/level/TMXLayer.js
index 20609a9b18..41e6e9f526 100644
--- a/src/level/TMXLayer.js
+++ b/src/level/TMXLayer.js
@@ -13,7 +13,7 @@
* @memberOf me
* @constructor
* @param {name} name layer name
- * @param {String} color in hexadecimal "RRGGBB" format
+ * @param {String} color in hexadecimal "#RRGGBB" format
* @param {int} z z position
*/
me.ColorLayer = Object.extend({
diff --git a/src/level/TMXTileset.js b/src/level/TMXTileset.js
index d0d9e59a53..afffdbc669 100755
--- a/src/level/TMXTileset.js
+++ b/src/level/TMXTileset.js
@@ -33,7 +33,7 @@
* @param {int} y y index of the Tile in the map
* @param {int} w Tile width
* @param {int} h Tile height
- * @param {int} tileId tileId>
+ * @param {int} tileId tileId
*/
me.Tile = me.Rect.extend({
/**