]> git.lizzy.rs Git - minetest.git/commitdiff
Fix 'the the' typos in comments (#9554)
authorLNJ <lnj@kaidan.im>
Sat, 4 Apr 2020 13:52:41 +0000 (15:52 +0200)
committerGitHub <noreply@github.com>
Sat, 4 Apr 2020 13:52:41 +0000 (15:52 +0200)
src/mapgen/mapgen_valleys.cpp
src/script/common/c_internal.cpp

index 2b8703fa5ddc386a195743b8091d521854395e0e..ff908b7bb5d58c8342769eb3c9022a3e75e7f2be 100644 (file)
@@ -390,7 +390,7 @@ int MapgenValleys::generateTerrain()
 
                // Rivers are placed where 'river' is negative
                if (river < 0.0f) {
-                       // Use the the function -sqrt(1-x^2) which models a circle
+                       // Use the function -sqrt(1-x^2) which models a circle
                        float tr = river / river_size_factor + 1.0f;
                        float depth = (river_depth_bed *
                                std::sqrt(std::fmax(0.0f, 1.0f - tr * tr)));
index a7dcf9b5f11cf28a737052770217078c1b126c99..b19af9f82145bf7f5287705250f1382c7c39bf3e 100644 (file)
@@ -47,7 +47,7 @@ int script_exception_wrapper(lua_State *L, lua_CFunction f)
 /*
  * Note that we can't get tracebacks for LUA_ERRMEM or LUA_ERRERR (without
  * hacking Lua internals).  For LUA_ERRMEM, this is because memory errors will
- * not execute the the error handler, and by the time lua_pcall returns the
+ * not execute the error handler, and by the time lua_pcall returns the
  * execution stack will have already been unwound.  For LUA_ERRERR, there was
  * another error while trying to generate a backtrace from a LUA_ERRRUN.  It is
  * presumed there is an error with the internal Lua state and thus not possible