cosmetic: fix several typos found by codespell

Change-Id: Id1f6766572fd313463201e6d03964965f227db25
diff --git a/CommonLibs/Vector.h b/CommonLibs/Vector.h
index 012a0fa..d55c5b3 100644
--- a/CommonLibs/Vector.h
+++ b/CommonLibs/Vector.h
@@ -232,7 +232,7 @@
 		assert(mStart+span<=mEnd);
 		for (i = 0; i < span; i++, src++, dst++)
 			*dst = *src;
-		/*TODO if not non-trivially copyable type class, optimize:
+		/*TODO if not non-trivially copiable type class, optimize:
 		memcpy(dst,mStart,span*sizeof(T)); */
 	}