typos fixed
authorMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Fri, 17 Jun 2005 17:38:52 +0000 (17:38 +0000)
committerMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Fri, 17 Jun 2005 17:38:52 +0000 (17:38 +0000)
[r6067]

ir/stat/firmstat.h
ir/tr/type_t.h

index 8de2f6c..cebd785 100644 (file)
@@ -36,7 +36,7 @@ enum firmstat_options_t {
  * Dump a snapshot of the statistic values.
  * Never called from libFirm should be called from user.
  *
- * @param name   basename of the statistic output file
+ * @param name   base name of the statistic output file
  */
 void stat_dump_snapshot(const char *name);
 
@@ -48,7 +48,7 @@ void stat_dump_snapshot(const char *name);
 void init_stat(unsigned enable_options);
 
 /**
- * terminates the statustics module, frees all memory
+ * terminates the statistics module, frees all memory
  */
 void stat_term(void);
 
index 489a24a..3fc6b05 100644 (file)
@@ -36,7 +36,7 @@ typedef struct {
   int dfn;             /**< number used for 'instanceof' operator */
 } cls_attr;
 
-/** struct attributs */
+/** struct attributes */
 typedef struct {
   entity **members;    /**< fields of this struct. No method entities
               allowed. */
@@ -54,7 +54,7 @@ typedef struct {
   int first_variadic_param;  /**< index of the first variadic param or -1 if non-variadic .*/
 } mtd_attr;
 
-/** union attributs */
+/** union attributes */
 typedef struct {
   int     n_types;
   /* type  **unioned_type; * a list of unioned types. */
@@ -64,7 +64,7 @@ typedef struct {
 
 } uni_attr;
 
-/** array attributs */
+/** array attributes */
 typedef struct {
   int   n_dimensions;  /**< Number of array dimensions.  */
   ir_node **lower_bound;   /**< Lower bounds of dimensions.  Usually all 0. */
@@ -75,7 +75,7 @@ typedef struct {
               element selection with Sel. */
 } arr_attr;
 
-/** enum attributs */
+/** enum attributes */
 typedef struct {
   int      n_enums;    /**< Number of enumerators. */
   tarval **enumer;     /**< Contains all constants that represent a member
@@ -84,9 +84,9 @@ typedef struct {
                           the source program */
 } enm_attr;
 
-/** pointer attributs */
+/** pointer attributes */
 typedef struct {
-  type *points_to;     /**< The type of the enitity the pointer points to. */
+  type *points_to;     /**< The type of the entity the pointer points to. */
 } ptr_attr;
 
 /*
@@ -99,7 +99,7 @@ typedef struct {        * No private attr, must be smaller than others! *
 } id_attr;
 */
 
-/** General type attributs. */
+/** General type attributes. */
 typedef union {
   cls_attr ca;      /**< attributes of a class type */
   stc_attr sa;      /**< attributes of a struct type */