diff options
author | Benoit Germain <benoit.germain@ubisoft.com> | 2024-06-14 17:11:36 +0200 |
---|---|---|
committer | Benoit Germain <benoit.germain@ubisoft.com> | 2024-06-14 17:11:36 +0200 |
commit | 50f4c40bdb5667aa7053434dede2dd98f6f9e243 (patch) | |
tree | c443c9337e238ff2825b2da4c9749fdf97aa574f /src/cancel.cpp | |
parent | ec8574d298ef302bc4162d9b394e96bf08763632 (diff) | |
download | lanes-50f4c40bdb5667aa7053434dede2dd98f6f9e243.tar.gz lanes-50f4c40bdb5667aa7053434dede2dd98f6f9e243.tar.bz2 lanes-50f4c40bdb5667aa7053434dede2dd98f6f9e243.zip |
Wording fix: parameter → argument
Diffstat (limited to 'src/cancel.cpp')
-rw-r--r-- | src/cancel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cancel.cpp b/src/cancel.cpp index 990f5d4..755215f 100644 --- a/src/cancel.cpp +++ b/src/cancel.cpp | |||
@@ -168,7 +168,7 @@ LUAG_FUNC(thread_cancel) | |||
168 | bool _wake_lane{ _op != CancelOp::Soft }; | 168 | bool _wake_lane{ _op != CancelOp::Soft }; |
169 | if (lua_gettop(L_) >= 2) { | 169 | if (lua_gettop(L_) >= 2) { |
170 | if (!lua_isboolean(L_, 2)) { | 170 | if (!lua_isboolean(L_, 2)) { |
171 | raise_luaL_error(L_, "wake_lindas parameter is not a boolean"); | 171 | raise_luaL_error(L_, "wake_lindas argument is not a boolean"); |
172 | } | 172 | } |
173 | _wake_lane = lua_toboolean(L_, 2); | 173 | _wake_lane = lua_toboolean(L_, 2); |
174 | lua_remove(L_, 2); // argument is processed, remove it | 174 | lua_remove(L_, 2); // argument is processed, remove it |