Fixed typo: substract to subtract

This commit is contained in:
Indah Sylvia 2017-12-05 11:34:46 +07:00
parent 5938466c84
commit 3996a05324
10 changed files with 16 additions and 16 deletions

View file

@ -221,7 +221,7 @@ godot_basis GDAPI godot_basis_operator_add(const godot_basis *p_self, const godo
return raw_dest;
}
godot_basis GDAPI godot_basis_operator_substract(const godot_basis *p_self, const godot_basis *p_b) {
godot_basis GDAPI godot_basis_operator_subtract(const godot_basis *p_self, const godot_basis *p_b) {
godot_basis raw_dest;
Basis *dest = (Basis *)&raw_dest;
const Basis *self = (const Basis *)p_self;