From 65882df61de8584be8b44b22fd1c2589f8946dd7 Mon Sep 17 00:00:00 2001 From: Arsenic <54987647+Arsenic-ATG@users.noreply.github.com> Date: Sat, 7 Jan 2023 13:16:57 +0530 Subject: [PATCH] fix minor typo in sand_smulations.cpp - close #1 --- extension/src/sand_simulation.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extension/src/sand_simulation.cpp b/extension/src/sand_simulation.cpp index a4a58cf..2f6a97b 100644 --- a/extension/src/sand_simulation.cpp +++ b/extension/src/sand_simulation.cpp @@ -94,7 +94,7 @@ using namespace godot; SandSimulation::SandSimulation() { // Each element has a single object instance so that the program - // can use polymorphism rather than explicity stating which method + // can use polymorphism rather than explicitly stating which method // is called for each element type // The order in the vector is arbitrary, but it must match the list order in main.gd @@ -460,4 +460,4 @@ void SandSimulation::_bind_methods() { ClassDB::bind_method(D_METHOD("set_chunk_size"), &SandSimulation::set_chunk_size); ClassDB::bind_method(D_METHOD("clean_up"), &SandSimulation::clean_up); -} \ No newline at end of file +}