summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlly Betts <olly@survex.com>2023-04-27 10:35:22 +1200
committerOlly Betts <olly@survex.com>2023-04-27 10:35:22 +1200
commit2860e28bd59905d06345d28f9e2f874aa4030098 (patch)
tree1fb64e2b12ee9c59727718903831742dc39f1f17
parent1f5ff2e6a585d0b5dca501945fabfeb48b1bf547 (diff)
downloadswig-2860e28bd59905d06345d28f9e2f874aa4030098.tar.gz
Fix typo: "temporal" which should be "temporary"
-rw-r--r--CHANGES2
-rw-r--r--Lib/swigrun.swg2
-rw-r--r--Lib/typemaps/implicit.swg2
-rw-r--r--Source/Modules/lua.cxx2
4 files changed, 4 insertions, 4 deletions
diff --git a/CHANGES b/CHANGES
index 049f449c3..13c76f0ae 100644
--- a/CHANGES
+++ b/CHANGES
@@ -13896,7 +13896,7 @@ Version 1.3.24 (December 14, 2004)
array or vector.
Also, a PySwigPacked object was adding to carry a member
- method pointer, but this is probably a temporal solution
+ method pointer, but this is probably a temporary solution
until a more general object for methods is added.
Be aware that to simplify maintaining and compatibility
diff --git a/Lib/swigrun.swg b/Lib/swigrun.swg
index f632c4cb6..824185c02 100644
--- a/Lib/swigrun.swg
+++ b/Lib/swigrun.swg
@@ -145,7 +145,7 @@
#define SWIG_CASTRANKLIMIT (1 << 8)
/* The NewMask denotes the object was created (using new/malloc) */
#define SWIG_NEWOBJMASK (SWIG_CASTRANKLIMIT << 1)
-/* The TmpMask is for in/out typemaps that use temporal objects */
+/* The TmpMask is for in/out typemaps that use temporary objects */
#define SWIG_TMPOBJMASK (SWIG_NEWOBJMASK << 1)
/* Simple returning values */
#define SWIG_BADOBJ (SWIG_ERROR)
diff --git a/Lib/typemaps/implicit.swg b/Lib/typemaps/implicit.swg
index 2fc3108e7..5536e0a22 100644
--- a/Lib/typemaps/implicit.swg
+++ b/Lib/typemaps/implicit.swg
@@ -27,7 +27,7 @@
get(2.0) ==> get(A(2.0))
get(B()) ==> get(A(B()))
- and swig will construct an 'A' temporal variable using the
+ and swig will construct an 'A' temporary variable using the
corresponding implicit constructor.
diff --git a/Source/Modules/lua.cxx b/Source/Modules/lua.cxx
index 96e5706ed..5b61e5ca9 100644
--- a/Source/Modules/lua.cxx
+++ b/Source/Modules/lua.cxx
@@ -1274,7 +1274,7 @@ public:
SwigType *t = Copy(Getattr(n, "name"));
SwigType *fr_t = SwigType_typedef_resolve_all(t); /* Create fully resolved type */
SwigType *t_tmp = 0;
- t_tmp = SwigType_typedef_qualified(fr_t); // Temporal variable
+ t_tmp = SwigType_typedef_qualified(fr_t); // Temporary variable
Delete(fr_t);
fr_t = SwigType_strip_qualifiers(t_tmp);
String *mangled_fr_t = 0;