summaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorOlly Betts <olly@survex.com>2022-09-29 18:17:32 +1300
committerOlly Betts <olly@survex.com>2022-09-29 18:17:32 +1300
commit3bf1da4298a31bf5bd18f1ec1cd07e8725b2d54a (patch)
treecbcd3fd46928081cedd48efb80e20a687a110f00 /CHANGES
parent9a4dea06c81448f86187c115912b4062ad1b3031 (diff)
downloadswig-3bf1da4298a31bf5bd18f1ec1cd07e8725b2d54a.tar.gz
Fix a few documentation typos
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES4
1 files changed, 2 insertions, 2 deletions
diff --git a/CHANGES b/CHANGES
index 3ddd94d2b..1dc87f93e 100644
--- a/CHANGES
+++ b/CHANGES
@@ -115,7 +115,7 @@ Version 4.0.2 (8 Jun 2020)
2020-01-13: wsfulton
[Python] #1595 Python -builtin constructors silently ignored keyword arguments.
- Instead of silenty ignoring them, now a "TypeError: f() takes no keyword arguments"
+ Instead of silently ignoring them, now a "TypeError: f() takes no keyword arguments"
exception is thrown if keyword arguments are used. Hence constructors and normal methods/
functions behave in the same way. Note, -keyword should be used with -builtin to obtain
keyword argument support.
@@ -200,7 +200,7 @@ Version 4.0.1 (21 Aug 2019)
VectorOverload(std::vector< Number,std::allocator< Number > >)
VectorOverload(std::vector< int,std::allocator< int > >)
- The problem was due to some error handling that was not cleared during typehecking.
+ The problem was due to some error handling that was not cleared during typechecking.
In this case an error was not cleared when the elements in the list failed the
typecheck for converting to X. Only occurs in Python 3+.