Fix some comments in varobj.{c,h}
authorSimon Marchi <simon.marchi@polymtl.ca>
Mon, 1 Feb 2016 03:22:19 +0000 (22:22 -0500)
committerSimon Marchi <simon.marchi@polymtl.ca>
Mon, 1 Feb 2016 03:24:17 +0000 (22:24 -0500)
A few typos.  The comment about varobj_create has been misplaced since
the dawn of time.

gdb/ChangeLog:

* varobj.h (struct varobj): Fix typos in comments.
(struct lang_varobj_ops): Likewise.
* varobj.c (VAROBJ_TABLE_SIZE): Likewise.
(varobj_create): Move misplaced comment.

gdb/ChangeLog
gdb/varobj.c
gdb/varobj.h

index 635202a6a6405d16f3696a0db383da4ebc352f84..fe8c2fbc6fd53596a2d54bae85585cff9eb02c95 100644 (file)
@@ -1,3 +1,10 @@
+2016-01-31  Simon Marchi  <simon.marchi@polymtl.ca>
+
+       * varobj.h (struct varobj): Fix typos in comments.
+       (struct lang_varobj_ops): Likewise.
+       * varobj.c (VAROBJ_TABLE_SIZE): Likewise.
+       (varobj_create): Move misplaced comment.
+
 2016-01-29  Simon Marchi  <simon.marchi@ericsson.com>
 
        * aarch64-tdep.c (aarch64_record_asimd_load_store): Add braces
index 8116a5be080dfab854d2869a064952f9acfa9881..b846ac0f8181c751baaad450417b591bc615cb7c 100644 (file)
@@ -220,7 +220,7 @@ static int format_code[] = { 0, 't', 'd', 'x', 'o', 'z' };
 static struct varobj_root *rootlist;
 
 /* Prime number indicating the number of buckets in the hash table.  */
-/* A prime large enough to avoid too many colisions.  */
+/* A prime large enough to avoid too many collisions.  */
 #define VAROBJ_TABLE_SIZE 227
 
 /* Pointer to the varobj hash table (built at run time).  */
@@ -246,8 +246,6 @@ varobj_ensure_python_env (const struct varobj *var)
 }
 #endif
 
-/* Creates a varobj (not its children).  */
-
 /* Return the full FRAME which corresponds to the given CORE_ADDR
    or NULL if no FRAME on the chain corresponds to CORE_ADDR.  */
 
@@ -280,6 +278,8 @@ find_frame_addr_in_frame_chain (CORE_ADDR frame_addr)
   return NULL;
 }
 
+/* Creates a varobj (not its children).  */
+
 struct varobj *
 varobj_create (char *objname,
               char *expression, CORE_ADDR frame, enum varobj_type type)
index ddf60e5fdba5c59cfe3f07ebf8f387168cde8a98..66399fde1c6898eaf898ca7212b92c41e3b64e8f 100644 (file)
@@ -53,7 +53,7 @@ enum varobj_scope_status
 /* String representations of gdb's format codes (defined in varobj.c).  */
 extern char *varobj_format_string[];
 
-/* Struct thar describes a variable object instance.  */
+/* Struct that describes a variable object instance.  */
 
 struct varobj;
 
@@ -107,7 +107,7 @@ struct varobj
   int index;
 
   /* The type of this variable.  This can be NULL
-     for artifial variable objects -- currently, the "accessibility" 
+     for artificial variable objects -- currently, the "accessibility"
      variable objects in C++.  */
   struct type *type;
 
@@ -198,7 +198,7 @@ struct lang_varobj_ops
      reported by -var-update.  Return zero if -var-update should never
      report changes of such values.  This makes sense for structures
      (since the changes in children values will be reported separately),
-     or for artifical objects (like 'public' pseudo-field in C++).
+     or for artificial objects (like 'public' pseudo-field in C++).
 
      Return value of 0 means that gdb need not call value_fetch_lazy
      for the value of this variable object.  */