Fix more typos!

[Patch recommit]


git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@9106 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Olly Betts 2006-05-14 18:24:13 +00:00
commit a2365c5bc8
3 changed files with 8 additions and 8 deletions

View file

@ -476,7 +476,7 @@ Swig_symbol_cadd(String_or_char *name, Node *n) {
/* The node in the symbol table is weak. Replace it */
if (checkAttribute(cn,k_nodetype,k_template)
&& checkAttribute(cn,k_templatetype,k_classforward)) {
/* The node is a template clasforward declaration, and the
/* The node is a template classforward declaration, and the
default template parameters here take precedence. */
ParmList *pc = Getattr(cn,k_templateparms);
ParmList *pn = Getattr(n,k_templateparms);
@ -557,7 +557,7 @@ Swig_symbol_cadd(String_or_char *name, Node *n) {
SwigType_push(type,HashGetAttr(td,k_decl));
td1 = Swig_symbol_clookup(type,0);
/* Fix patetic case #1214313:
/* Fix pathetic case #1214313:
class Foo
{

View file

@ -83,9 +83,9 @@ char cvsroot_typeobj_c[] = "$Header$";
*
* In addition, there are query functions
*
* SwigType_is_pointer()
* SwigType_is_reference()
* SwigType_is_array()
* SwigType_ispointer()
* SwigType_isreference()
* SwigType_isarray()
*
* Finally, there are some data extraction functions that can be used to
* extract array dimensions, template arguments, and so forth.
@ -97,7 +97,7 @@ char cvsroot_typeobj_c[] = "$Header$";
* typedef int *intptr;
*
* In this case, a SwigType of type 'intptr' will be treated as a simple type and
* functions like SwigType_is_pointer() will evaluate as false. It is strongly
* functions like SwigType_ispointer() will evaluate as false. It is strongly
* advised that developers use the TypeSys_* interface to check types in a more
* reliable manner.
* ----------------------------------------------------------------------------- */
@ -353,7 +353,7 @@ SwigType_ispointer(SwigType *t) {
* SwigType_del_reference()
* SwigType_isreference()
*
* Add, remove, and test if a type is a pointer. The deletion and query
* Add, remove, and test if a type is a reference. The deletion and query
* functions take into account qualifiers (if any).
* ----------------------------------------------------------------------------- */

View file

@ -118,7 +118,7 @@ static Hash *typedef_qualified_cache = 0;
always safe, but is well known.
Setting at '1' activates the new scheme, which is always safe but
it requires all the typemaps ready for that.
it requires all the typemaps to be ready for that.
*/
static int value_wrapper_mode = 0;