]> git.meshlink.io Git - catta/commitdiff
fix a few typos in doxygen comments
authorLennart Poettering <lennart@poettering.net>
Sun, 6 Aug 2006 11:53:01 +0000 (11:53 +0000)
committerLennart Poettering <lennart@poettering.net>
Sun, 6 Aug 2006 11:53:01 +0000 (11:53 +0000)
git-svn-id: file:///home/lennart/svn/public/avahi/trunk@1244 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe

avahi-common/thread-watch.h
avahi-common/timeval.h
avahi-glib/glib-malloc.h
avahi-glib/glib-watch.h

index 469ffe57a8b02064b2559271f0e39827bbfdb84e..e60329340897cb22751bcddafb20d5f8ebcbef5f 100644 (file)
@@ -46,7 +46,7 @@ void avahi_threaded_poll_free(AvahiThreadedPoll *p);
  * called. \since 0.6.4 */
 const AvahiPoll* avahi_threaded_poll_get(AvahiThreadedPoll *p);
 
-/** Start the event loop helper thread. After the thread has startet
+/** Start the event loop helper thread. After the thread has started
  * you must make sure to access the event loop object
  * (AvahiThreadedPoll, AvahiPoll and all its associated objects)
  * synchronized, i.e. with proper locking. You may want to use
index 8bdb073dbdc071d3f7fdba5a5991b2aac8042e47..a441c0891a6dae4ccd51b0b5f12f1b40af22ae1b 100644 (file)
@@ -34,10 +34,10 @@ AVAHI_C_DECL_BEGIN
 /** A numeric data type for storing microsecond values. (signed 64bit integer) */
 typedef int64_t AvahiUsec;
 
-/** Compare two timeval structures and return a ngeative value when a < b, 0 when a == b and a positive value otherwise */
+/** Compare two timeval structures and return a negative value when a < b, 0 when a == b and a positive value otherwise */
 int avahi_timeval_compare(const struct timeval *a, const struct timeval *b);
 
-/** Calculate the difference between to timeval structures as microsecond value */
+/** Calculate the difference between two timeval structures as microsecond value */
 AvahiUsec avahi_timeval_diff(const struct timeval *a, const struct timeval *b);
 
 /** Add a number of microseconds to the specified timeval structure and return it. *a is modified. */
index 5982e08961a4b07222c5abd91c7fbf1038e40d75..675ccb579ad0645aa8c007e0d59d3617dd31c8b8 100644 (file)
@@ -32,7 +32,7 @@
 AVAHI_C_DECL_BEGIN
 
 /** Return a pointer to a memory allocator that uses GLib's g_malloc()
- and frinds. Th returned structure is statically allocated, and needs
+ and friends. The returned structure is statically allocated, and needs
  not to be copied or freed. Pass this directly to avahi_set_allocator(). */
 const AvahiAllocator * avahi_glib_allocator(void);
 
index 895a6866e5028a228851c2b6da254cdc477397ab..0abc291d439e1cb473e60dbdc67d506eb1d5fc71 100644 (file)
@@ -37,7 +37,7 @@ typedef struct AvahiGLibPoll AvahiGLibPoll;
 /** Create a new GLib main loop adapter attached to the specified
  context. If context is NULL, the default main loop context is
  used. You can attach as many AvahiGLibPoll objects to the same context
- as you want. priority takes on of GLib's G_PRIORITY constants. */
+ as you want. priority takes one of GLib's G_PRIORITY constants. */
 AvahiGLibPoll *avahi_glib_poll_new(GMainContext *context, gint priority);
 
 /** Free  GLib main loop adapter */