summaryrefslogtreecommitdiff
path: root/Lib/scilab
diff options
context:
space:
mode:
authorluz.paz <luzpaz@users.noreply.github.com>2018-05-14 11:00:52 -0400
committerluz paz <luzpaz@users.noreply.github.com>2018-05-17 10:04:23 -0400
commit60dfa31a67601f25a3ca171ae7d2503a46e0ec03 (patch)
treedc18e5f0bbd4b97bd3b562149408fa8212b0f598 /Lib/scilab
parent3eb41c9beb4b420bc58b9c2b97316f35dc3be7be (diff)
downloadswig-60dfa31a67601f25a3ca171ae7d2503a46e0ec03.tar.gz
Misc. typos
found via `codespell` and `grep`
Diffstat (limited to 'Lib/scilab')
-rw-r--r--Lib/scilab/sciiterators.swg2
-rw-r--r--Lib/scilab/scirun.swg6
2 files changed, 4 insertions, 4 deletions
diff --git a/Lib/scilab/sciiterators.swg b/Lib/scilab/sciiterators.swg
index 1c7ce4394..69cb04bee 100644
--- a/Lib/scilab/sciiterators.swg
+++ b/Lib/scilab/sciiterators.swg
@@ -1,7 +1,7 @@
/* -----------------------------------------------------------------------------
* sciiterators.swg
*
- * Users can derive form the SciSwigIterator to implemet their
+ * Users can derive form the SciSwigIterator to implement their
* own iterators. As an example (real one since we use it for STL/STD
* containers), the template SwigSciIterator_T does the
* implementation for generic C++ iterators.
diff --git a/Lib/scilab/scirun.swg b/Lib/scilab/scirun.swg
index 9c88df128..c1880d32c 100644
--- a/Lib/scilab/scirun.swg
+++ b/Lib/scilab/scirun.swg
@@ -157,15 +157,15 @@ SWIGRUNTIME void
SWIG_Scilab_Raise_Ex(const char *obj, const char *type, swig_type_info *descriptor) {
if (type) {
if (obj)
- Scierror(SWIG_SCILAB_ERROR, "SWIG/Scilab: Exception (%s) occured: %s\n", type, obj);
+ Scierror(SWIG_SCILAB_ERROR, "SWIG/Scilab: Exception (%s) occurred: %s\n", type, obj);
else
- Scierror(SWIG_SCILAB_ERROR, "SWIG/Scilab: Exception (%s) occured.\n", type);
+ Scierror(SWIG_SCILAB_ERROR, "SWIG/Scilab: Exception (%s) occurred.\n", type);
}
}
SWIGRUNTIME void
SWIG_Scilab_Raise(const int obj, const char *type, swig_type_info *descriptor) {
- Scierror(SWIG_SCILAB_ERROR, "SWIG/Scilab: Exception (%s) occured.\n", type);
+ Scierror(SWIG_SCILAB_ERROR, "SWIG/Scilab: Exception (%s) occurred.\n", type);
}
/* Module initialization */