mirror of
https://github.com/godotengine/godot.git
synced 2026-01-05 06:11:29 +03:00
Fix various typos with codespell
Using 2.2.7.dev217+g10c2abcf. Had to add `colour` to the ignore list as we used it as an alias/keyword for the documentation of color-related APIs. Also ignore recommendations to change `thirdparty` to either `third-party` or `third party`, which are correct but we use the former fairly consistently.
This commit is contained in:
@@ -57,7 +57,7 @@ func test():
|
||||
var lambda_callable_2 : Callable = func(_foo, _bar, _baz): pass
|
||||
print(lambda_callable_2.get_argument_count()) # Should print 3.
|
||||
|
||||
# Test lambas with self.
|
||||
# Test lambdas with self.
|
||||
var lambda_self_callable_1 : Callable = func(_foo, _bar): return self
|
||||
print(lambda_self_callable_1.get_argument_count()) # Should print 2.
|
||||
var lambda_self_callable_2 : Callable = func(_foo, _bar, _baz): return self
|
||||
|
||||
Reference in New Issue
Block a user