diff options
author | Yuri Chornoivan <yurchor@ukr.net> | 2012-08-22 21:29:18 +0300 |
---|---|---|
committer | Eric Blake <eblake@redhat.com> | 2012-08-22 15:34:07 -0600 |
commit | 66d811293a03cbb20c7903a2225f0b814edaedbf (patch) | |
tree | d4c18fa430656daaaa2070c9352a9d1bdcf8fc05 /src/util | |
parent | dnsmasq: avoid forwarding queries without a domain (diff) | |
download | libvirt-66d811293a03cbb20c7903a2225f0b814edaedbf.tar.gz libvirt-66d811293a03cbb20c7903a2225f0b814edaedbf.tar.bz2 libvirt-66d811293a03cbb20c7903a2225f0b814edaedbf.zip |
Fix some typos in messages, docs and comments.
Diffstat (limited to 'src/util')
-rw-r--r-- | src/util/virhash.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/virhash.c b/src/util/virhash.c index 5794d6f65..1576dd326 100644 --- a/src/util/virhash.c +++ b/src/util/virhash.c @@ -360,7 +360,7 @@ virHashUpdateEntry(virHashTablePtr table, const void *name, * * Find the userdata specified by @name * - * Returns the a pointer to the userdata + * Returns a pointer to the userdata */ void * virHashLookup(virHashTablePtr table, const void *name) @@ -388,7 +388,7 @@ virHashLookup(virHashTablePtr table, const void *name) * Find the userdata specified by @name * and remove it from the hash without freeing it. * - * Returns the a pointer to the userdata + * Returns a pointer to the userdata */ void *virHashSteal(virHashTablePtr table, const void *name) { |