From 7fd2d99020512adce7f16465e0814cbcdb2bb8b3 Mon Sep 17 00:00:00 2001 From: Tequila Date: Thu, 13 Mar 2014 02:20:54 +0100 Subject: Bunch of comment fixes --- src/qcommon/common.c | 4 ++-- src/qcommon/q_shared.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'src/qcommon') diff --git a/src/qcommon/common.c b/src/qcommon/common.c index edfca8c9..d8216b15 100644 --- a/src/qcommon/common.c +++ b/src/qcommon/common.c @@ -1515,7 +1515,7 @@ void Hunk_SmallLog( void) { /* ================= -Com_InitZoneMemory +Com_InitHunkZoneMemory ================= */ void Com_InitHunkMemory( void ) { @@ -3375,7 +3375,7 @@ void Field_AutoComplete( field_t *field ) ================== Com_RandomBytes -fills string array with len radom bytes, peferably from the OS randomizer +fills string array with len random bytes, preferably from the OS randomizer ================== */ void Com_RandomBytes( byte *string, int len ) diff --git a/src/qcommon/q_shared.h b/src/qcommon/q_shared.h index 88322482..e3b1a48e 100644 --- a/src/qcommon/q_shared.h +++ b/src/qcommon/q_shared.h @@ -569,7 +569,7 @@ typedef struct { #define Byte4Copy(a,b) ((b)[0]=(a)[0],(b)[1]=(a)[1],(b)[2]=(a)[2],(b)[3]=(a)[3]) -// just in case you do't want to use the macros +// just in case you don't want to use the macros vec_t _DotProduct( const vec3_t v1, const vec3_t v2 ); void _VectorSubtract( const vec3_t veca, const vec3_t vecb, vec3_t out ); void _VectorAdd( const vec3_t veca, const vec3_t vecb, vec3_t out ); -- cgit