diff --git a/lab2/src/YourLetter.js b/lab2/src/YourLetter.js
index 88c885deed0c27fa2a27e8c9eb624c72419903a8..262b30da31f8367dc2025d5bec3bea09adc68034 100644
--- a/lab2/src/YourLetter.js
+++ b/lab2/src/YourLetter.js
@@ -15,17 +15,17 @@ function YourLetter() {
 
 	this.vertices = new Float32Array([
 		v0, v1,
-		// v2, v3, v4... TODO: Complete with your vertices (see cube example in the README file of lab 2)
+		// v2, v3, v4... TODO: Complete with your vertices
   ].flat(2));
 
 	// Define vertices indices
 	this.indices = new Uint8Array([       // Indices of the vertices
 		0,1,8, 		0,8,6,
-		// 0,6,7,... TODO: Complete with your indices (see cube example in the README file of lab 2)
+		// 0,6,7,... TODO: Complete with your indices
   ]);
 
 	// Define colors
 	this.colors = new Float32Array(
-		// TODO: Complete with your colors (see cube example in the README file of lab 2)
+		// TODO: Complete with your colors
 	);
 }
\ No newline at end of file