Code

Spelling: it's -> its
authorCorey Kosak <kosak@google.com>
Sat, 6 Aug 2016 00:48:27 +0000 (20:48 -0400)
committerCorey Kosak <kosak@kosak.com>
Sat, 6 Aug 2016 14:03:25 +0000 (10:03 -0400)
src/daemon/configfile.c
src/daemon/utils_avltree.h
src/daemon/utils_heap.h
src/rrdtool.c

index ff5e034eb4682ec629433a4f8acba7790e882dee..a31fb64d17781854d015236155c6a833eae8c186 100644 (file)
@@ -792,7 +792,7 @@ static oconfig_item_t *cf_read_dir (const char *dir,
  *
  * There are two versions of this function: If `wordexp' exists shell wildcards
  * will be expanded and the function will include all matches found. If
- * `wordexp' (or, more precisely, it's header file) is not available the
+ * `wordexp' (or, more precisely, its header file) is not available the
  * simpler function is used which does not do any such expansion.
  */
 #if HAVE_WORDEXP_H
index 1e0f271fc187ce4e35f8bb015dbedc4bbe947448..43e94cfb64dd359dddb5db258dcdeb379e28a060 100644 (file)
@@ -42,7 +42,7 @@ typedef struct c_avl_iterator_s c_avl_iterator_t;
  *
  * PARAMETERS
  *   `compare'  The function-pointer `compare' is used to compare two keys. It
- *              has to return less than zero if it's first argument is smaller
+ *              has to return less than zero if its first argument is smaller
  *              then the second argument, more than zero if the first argument
  *              is bigger than the second argument and zero if they are equal.
  *              If your keys are char-pointers, you can use the `strcmp'
@@ -131,7 +131,7 @@ int c_avl_get (c_avl_tree_t *t, const void *key, void **value);
  *   c_avl_pick
  *
  * DESCRIPTION
- *   Remove a (pseudo-)random element from the tree and return it's `key' and
+ *   Remove a (pseudo-)random element from the tree and return its `key' and
  *   `value'. Entries are not returned in any particular order. This function
  *   is intended for cache-flushes that don't care about the order but simply
  *   want to remove all elements, one at a time.
index 6d71c43a13feb371af92033ee949a826e4cba67e..243554c63dba8afba2da304c1f09ec1bf2a00143 100644 (file)
@@ -39,7 +39,7 @@ typedef struct c_heap_s c_heap_t;
  *
  * PARAMETERS
  *   `compare'  The function-pointer `compare' is used to compare two keys. It
- *              has to return less than zero if it's first argument is smaller
+ *              has to return less than zero if its first argument is smaller
  *              then the second argument, more than zero if the first argument
  *              is bigger than the second argument and zero if they are equal.
  *              If your keys are char-pointers, you can use the `strcmp'
index c63db52ee802cd15c610f1cc92825ddaa2dc5539..094dd42a7a6b8217a5fec858ec0683a535342be1 100644 (file)
@@ -411,7 +411,7 @@ static void *rrd_queue_thread (void __attribute__((unused)) *data)
                pthread_mutex_unlock (&queue_lock);
 
                /* We now need the cache lock so the entry isn't updated while
-                * we make a copy of it's values */
+                * we make a copy of its values */
                pthread_mutex_lock (&cache_lock);
 
                status = c_avl_get (cache, queue_entry->filename,