From 7b7c7a5238e3d36e90d8ca687cfe428557f29af3 Mon Sep 17 00:00:00 2001 From: Tobias Frost Date: Wed, 25 Feb 2015 22:01:00 +0100 Subject: [PATCH] Fixing some spelling errors: s/unkown/unknown, s/seperate/separate. (#107) --- d3xp/gamesys/SysCvar.cpp | 2 +- d3xp/physics/Physics_AF.cpp | 4 ++-- game/gamesys/SysCvar.cpp | 2 +- game/physics/Physics_AF.cpp | 4 ++-- idlib/Lexer.cpp | 2 +- idlib/Parser.cpp | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/d3xp/gamesys/SysCvar.cpp b/d3xp/gamesys/SysCvar.cpp index 5ed1b1a..e6e7069 100644 --- a/d3xp/gamesys/SysCvar.cpp +++ b/d3xp/gamesys/SysCvar.cpp @@ -416,4 +416,4 @@ idCVar g_xp_bind_run_once( "g_xp_bind_run_once", "0", CVAR_GAME | CVAR_BOOL | CV idCVar net_serverDownload( "net_serverDownload", "0", CVAR_GAME | CVAR_INTEGER | CVAR_ARCHIVE, "enable server download redirects. 0: off 1: redirect to si_serverURL 2: use builtin download. see net_serverDl cvars for configuration" ); idCVar net_serverDlBaseURL( "net_serverDlBaseURL", "", CVAR_GAME | CVAR_ARCHIVE, "base URL for the download redirection" ); -idCVar net_serverDlTable( "net_serverDlTable", "", CVAR_GAME | CVAR_ARCHIVE, "pak names for which download is provided, seperated by ;" ); +idCVar net_serverDlTable( "net_serverDlTable", "", CVAR_GAME | CVAR_ARCHIVE, "pak names for which download is provided, separated by ;" ); diff --git a/d3xp/physics/Physics_AF.cpp b/d3xp/physics/Physics_AF.cpp index b716b74..098a4bf 100644 --- a/d3xp/physics/Physics_AF.cpp +++ b/d3xp/physics/Physics_AF.cpp @@ -3075,7 +3075,7 @@ void idAFConstraint_Contact::ApplyFriction( float invTimeStep ) { return; } - // seperate friction per contact is silly but it's fast and often looks close enough + // separate friction per contact is silly but it's fast and often looks close enough if ( af_useImpulseFriction.GetBool() ) { impulse.SetData( 6, VECX_ALLOCA( 6 ) ); @@ -6963,7 +6963,7 @@ void idPhysics_AF::BuildTrees( void ) { } if ( trees.Num() > 1 ) { - gameLocal.Warning( "Articulated figure has multiple seperate tree structures for entity '%s' type '%s'.", + gameLocal.Warning( "Articulated figure has multiple separate tree structures for entity '%s' type '%s'.", self->name.c_str(), self->GetType()->classname ); } diff --git a/game/gamesys/SysCvar.cpp b/game/gamesys/SysCvar.cpp index 9751ca8..34fee96 100644 --- a/game/gamesys/SysCvar.cpp +++ b/game/gamesys/SysCvar.cpp @@ -334,4 +334,4 @@ idCVar mod_validSkins( "mod_validSkins", "skins/characters/player/marine_mp idCVar net_serverDownload( "net_serverDownload", "0", CVAR_GAME | CVAR_INTEGER | CVAR_ARCHIVE, "enable server download redirects. 0: off 1: redirect to si_serverURL 2: use builtin download. see net_serverDl cvars for configuration" ); idCVar net_serverDlBaseURL( "net_serverDlBaseURL", "", CVAR_GAME | CVAR_ARCHIVE, "base URL for the download redirection" ); -idCVar net_serverDlTable( "net_serverDlTable", "", CVAR_GAME | CVAR_ARCHIVE, "pak names for which download is provided, seperated by ;" ); +idCVar net_serverDlTable( "net_serverDlTable", "", CVAR_GAME | CVAR_ARCHIVE, "pak names for which download is provided, separated by ;" ); diff --git a/game/physics/Physics_AF.cpp b/game/physics/Physics_AF.cpp index 69ea4a2..3730480 100644 --- a/game/physics/Physics_AF.cpp +++ b/game/physics/Physics_AF.cpp @@ -3074,7 +3074,7 @@ void idAFConstraint_Contact::ApplyFriction( float invTimeStep ) { return; } - // seperate friction per contact is silly but it's fast and often looks close enough + // separate friction per contact is silly but it's fast and often looks close enough if ( af_useImpulseFriction.GetBool() ) { impulse.SetData( 6, VECX_ALLOCA( 6 ) ); @@ -6962,7 +6962,7 @@ void idPhysics_AF::BuildTrees( void ) { } if ( trees.Num() > 1 ) { - gameLocal.Warning( "Articulated figure has multiple seperate tree structures for entity '%s' type '%s'.", + gameLocal.Warning( "Articulated figure has multiple separate tree structures for entity '%s' type '%s'.", self->name.c_str(), self->GetType()->classname ); } diff --git a/idlib/Lexer.cpp b/idlib/Lexer.cpp index 4629a58..f125aea 100644 --- a/idlib/Lexer.cpp +++ b/idlib/Lexer.cpp @@ -192,7 +192,7 @@ const char *idLexer::GetPunctuationFromId( int id ) { return idLexer::punctuations[i].p; } } - return "unkown punctuation"; + return "unknown punctuation"; } /* diff --git a/idlib/Parser.cpp b/idlib/Parser.cpp index a461a0e..931fd52 100644 --- a/idlib/Parser.cpp +++ b/idlib/Parser.cpp @@ -3144,7 +3144,7 @@ const char *idParser::GetPunctuationFromId( int id ) { return idParser::punctuations[i].p; } } - return "unkown punctuation"; + return "unknown punctuation"; } /*