Skip to content

Commit d89e2ed

Browse files
committed
Fix typos
1 parent 91941f5 commit d89e2ed

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

DeepCopy/objects/obj_deep_copy_test/Create_0.gml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ var struct = new Class3(
1717
var new_araay = deep_copy(array);
1818
var new_struct = deep_copy(struct);
1919

20-
// Both have identival values
20+
// Both have identical values
2121
show_debug_message(array);
2222
show_debug_message(struct);
2323
show_debug_message(new_araay);

DeepCopy/scripts/deep_copy/deep_copy.gml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/// @function deep_copy(ref)
22
/// @param {T} ref Thing to deep copy
3-
/// @returns {T} New array, or new struct, or new instance of class, anything else (real / string / etc.) will be returned as-is
3+
/// @returns {T} New array, or new struct, or new instance of the class, anything else (real / string / etc.) will be returned as-is
44
/// @description Returns a deep recursive copy of the provided array / struct / constructed struct
55
function deep_copy(ref) {
66
var ref_new;

0 commit comments

Comments
 (0)