OSDN Git Service

2005-09-23 David Edelsohn <edelsohn@gnu.org>
[pf3gnuchains/gcc-fork.git] / gcc / vec.h
index 842ac7b..586797a 100644 (file)
--- a/gcc/vec.h
+++ b/gcc/vec.h
@@ -151,7 +151,7 @@ Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
 /* Check if vector is empty
    int VEC_T_empty(const VEC(T) *v);
 
-   Return non-zero if V is an empty vector (or V is NULL), zero otherwise. */
+   Return nonzero if V is an empty vector (or V is NULL), zero otherwise.  */
 
 #define VEC_empty(T,V) (VEC_length (T,V) == 0)
 
@@ -218,7 +218,7 @@ Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
    VEC(T,A) *VEC_T_A_copy(VEC(T) *);
 
    Copy the live elements of a vector into a new vector.  The new and
-   old vectors need not be allocated by the same mechanim.  */
+   old vectors need not be allocated by the same mechanism.  */
 
 #define VEC_copy(T,A,V) (VEC_OP(T,A,copy)(VEC_BASE(V) MEM_STAT_INFO))