Skip to content

Commit

Permalink
Merge pull request JACoders#808 from a-detiste/master
Browse files Browse the repository at this point in the history
Comment Typos
  • Loading branch information
mrwonko committed Mar 10, 2016
2 parents d73b1cd + 2c5ca88 commit ed95d18
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion code/qcommon/cm_trace.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -620,7 +620,7 @@ void CM_TraceThroughTree( traceWork_t *tw, clipMap_t *local, int num, float p1f,
}

//
// find the point distances to the seperating plane
// find the point distances to the separating plane
// and the offset for the size of the box
//
node = local->nodes + num;
Expand Down
2 changes: 1 addition & 1 deletion code/qcommon/common.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ void Com_ParseCommandLine( char *commandLine ) {
if (*commandLine == '"') {
inq = !inq;
}
// look for a + seperating character
// look for a + separating character
// if commandLine came from a file, we might have real line seperators
if ( (*commandLine == '+' && !inq) || *commandLine == '\n' || *commandLine == '\r' ) {
if ( com_numConsoleLines == MAX_CONSOLE_LINES ) {
Expand Down
4 changes: 2 additions & 2 deletions codemp/botlib/aasfile.h
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ along with this program; if not, see <http://www.gnu.org/licenses/>.
#define FACE_LADDER 2 //ladder
#define FACE_GROUND 4 //standing on ground when in this face
#define FACE_GAP 8 //gap in the ground
#define FACE_LIQUID 16 //face seperating two areas with liquid
#define FACE_LIQUIDSURFACE 32 //face seperating liquid and air
#define FACE_LIQUID 16 //face separating two areas with liquid
#define FACE_LIQUIDSURFACE 32 //face separating liquid and air
#define FACE_BRIDGE 64 //can walk over this face if bridge is closed

//area contents
Expand Down
2 changes: 1 addition & 1 deletion codemp/botlib/be_aas_cluster.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ int AAS_UpdatePortal(int areanum, int clusternum)
{
//remove the cluster portal flag contents
aasworld.areasettings[areanum].contents &= ~AREACONTENTS_CLUSTERPORTAL;
Log_Write("portal area %d is seperating more than two clusters\r\n", areanum);
Log_Write("portal area %d is separating more than two clusters\r\n", areanum);
return qfalse;
} //end else
if (aasworld.portalindexsize >= AAS_MAX_PORTALINDEXSIZE)
Expand Down
2 changes: 1 addition & 1 deletion codemp/game/g_saga.c
Original file line number Diff line number Diff line change
Expand Up @@ -1949,7 +1949,7 @@ void G_SiegeClientExData(gentity_t *msgTarg)
trap->InPVS(msgTarg->client->ps.origin, ent->client->ps.origin))
{ //another client in the same pvs, send his jive
if (count)
{ //append a seperating space if we are not the first in the list
{ //append a separating space if we are not the first in the list
Q_strcat(str, sizeof(str), " ");
}
else
Expand Down
2 changes: 1 addition & 1 deletion codemp/qcommon/cm_trace.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1093,7 +1093,7 @@ void CM_TraceThroughTree( traceWork_t *tw, trace_t &trace, clipMap_t *local, int
}

//
// find the point distances to the seperating plane
// find the point distances to the separating plane
// and the offset for the size of the box
//
node = local->nodes + num;
Expand Down
2 changes: 1 addition & 1 deletion codemp/qcommon/common.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ void Com_Quit_f( void ) {
COMMAND LINE FUNCTIONS
+ characters seperate the commandLine string into multiple console
+ characters separate the commandLine string into multiple console
command lines.
All of these are valid:
Expand Down
8 changes: 4 additions & 4 deletions lib/minizip/unzip.c
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
Oct-2009 - Mathias Svensson - Fixed problem if uncompressed size was > 4G and compressed size was <4G
should only read the compressed/uncompressed size from the Zip64 format if
the size from normal header was 0xFFFFFFFF
Oct-2009 - Mathias Svensson - Applied some bug fixes from paches recived from Gilles Vollant
Oct-2009 - Mathias Svensson - Applied some bug fixes from paches received from Gilles Vollant
Oct-2009 - Mathias Svensson - Applied support to unzip files with compression mathod BZIP2 (bzip2 lib is required)
Patch created by Daniel Borca
Expand Down Expand Up @@ -207,7 +207,7 @@ typedef struct
/* ===========================================================================
Read a byte from a gz_stream; update next_in and avail_in. Return EOF
for end of file.
IN assertion: the stream s has been sucessfully opened for reading.
IN assertion: the stream s has been successfully opened for reading.
*/


Expand Down Expand Up @@ -387,8 +387,8 @@ local int strcmpcasenosensitive_internal (const char* fileName1, const char* fil

/*
Compare two filename (fileName1,fileName2).
If iCaseSenisivity = 1, comparision is case sensitivity (like strcmp)
If iCaseSenisivity = 2, comparision is not case sensitivity (like strcmpi
If iCaseSenisivity = 1, comparison is case sensitivity (like strcmp)
If iCaseSenisivity = 2, comparison is not case sensitivity (like strcmpi
or strcasecmp)
If iCaseSenisivity = 0, case sensitivity is defaut of your operating system
(like 1 on Unix, 2 on Windows)
Expand Down

0 comments on commit ed95d18

Please sign in to comment.