Fix typo in demo.odin

This commit is contained in:
gingerBill
2019-03-11 09:32:15 +00:00
parent 4446a1431a
commit b08d944c33
+1 -1
View File
@@ -856,7 +856,7 @@ cstring_example :: proc() {
fmt.println(len(W), len(X), len(Y)); fmt.println(len(W), len(X), len(Y));
// IMPORTANT NOTE for cstring variables // IMPORTANT NOTE for cstring variables
// len(cstring) is O(N) // len(cstring) is O(N)
// cast(cstring)string is O(N) // cast(string)cstring is O(N)
} }
deprecated_attribute :: proc() { deprecated_attribute :: proc() {