From: havoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Date: Wed, 24 Jan 2007 14:21:05 +0000 (+0000)
Subject: fix a few typos in comments
X-Git-Tag: xonotic-v0.1.0preview~3660
X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=cb02f6ad52202d505753eb88b21d0b79ef0d447c;p=xonotic%2Fdarkplaces.git

fix a few typos in comments


git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@6748 d7cf8633-e32d-0410-b094-e92efae38249
---

diff --git a/csprogs.c b/csprogs.c
index 19aef188..45f16493 100644
--- a/csprogs.c
+++ b/csprogs.c
@@ -20,7 +20,7 @@ static prvm_prog_t *csqc_tmpprog;
 #define CL_F_SHUTDOWN			"CSQC_Shutdown"
 
 //[515]: these are optional
-#define CL_F_PARSE_TEMPENTITY	"CSQC_Parse_TempEntity"	//[515]: very helpfull when you want to create your own particles/decals/etc for effects that allready exist
+#define CL_F_PARSE_TEMPENTITY	"CSQC_Parse_TempEntity"	//[515]: very helpfull when you want to create your own particles/decals/etc for effects that already exist
 #define CL_F_PARSE_STUFFCMD		"CSQC_Parse_StuffCmd"
 #define CL_F_PARSE_PRINT		"CSQC_Parse_Print"
 #define CL_F_PARSE_CENTERPRINT	"CSQC_Parse_CenterPrint"
diff --git a/world.c b/world.c
index cf2b2d00..b87da566 100644
--- a/world.c
+++ b/world.c
@@ -643,7 +643,7 @@ trace_t SV_Move(const vec3_t start, const vec3_t mins, const vec3_t maxs, const
 	// precalculate passedict's owner edict pointer for comparisons
 	traceowner = passedict ? PRVM_PROG_TO_EDICT(passedict->fields.server->owner) : 0;
 
-	// clip to enttiies
+	// clip to entities
 	numtouchedicts = SV_EntitiesInBox(clipboxmins, clipboxmaxs, MAX_EDICTS, touchedicts);
 	if (numtouchedicts > MAX_EDICTS)
 	{
diff --git a/world_cs.c b/world_cs.c
index 97a65f24..9dfaffca 100644
--- a/world_cs.c
+++ b/world_cs.c
@@ -634,7 +634,7 @@ trace_t CSSV_Move(const vec3_t start, const vec3_t mins, const vec3_t maxs, cons
 	// precalculate passedict's owner edict pointer for comparisons
 	traceowner = passedict ? PRVM_PROG_TO_EDICT(passedict->fields.client->owner) : 0;
 
-	// clip to enttiies
+	// clip to entities
 	numtouchedicts = CSSV_EntitiesInBox(clipboxmins, clipboxmaxs, MAX_EDICTS, touchedicts);
 	if (numtouchedicts > MAX_EDICTS)
 	{