summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorStefan Weil <sw@weilnetz.de>2012-02-26 18:46:12 +0100
committerStefan Hajnoczi <stefanha@linux.vnet.ibm.com>2012-03-08 15:22:11 +0000
commit93148aa5c341810b0ecefdbe4e760fddb38d9085 (patch)
tree2bfed99d4c80f25b3b252c7fd81801775786141f /include
parent0ea5c0cdb0d87b5848cbe749598716bc62fd334a (diff)
downloadqemu-93148aa5c341810b0ecefdbe4e760fddb38d9085.tar.gz
Spelling fixes in comments (it's -> its)
* it's -> its (fixed for all files) * dont -> don't (only fixed in a line which was touched by the previous fix) * distrub -> disturb (fixed in the same line) Reviewed-by: Andreas Färber <afaerber@suse.de> Signed-off-by: Stefan Weil <sw@weilnetz.de> Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Diffstat (limited to 'include')
-rw-r--r--include/qemu/object.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/qemu/object.h b/include/qemu/object.h
index dd7f3c06c8..ec2d2943c2 100644
--- a/include/qemu/object.h
+++ b/include/qemu/object.h
@@ -124,7 +124,7 @@ typedef struct InterfaceInfo InterfaceInfo;
*
* Once all of the parent classes have been initialized, #TypeInfo::class_init
* is called to let the class being instantiated provide default initialize for
- * it's virtual functions. Here is how the above example might be modified
+ * its virtual functions. Here is how the above example might be modified
* to introduce an overridden virtual function:
*
* <example>
@@ -527,7 +527,7 @@ Type type_register_static(const TypeInfo *info);
* type_register:
* @info: The #TypeInfo of the new type
*
- * Unlike type_register_static(), this call does not require @info or it's
+ * Unlike type_register_static(), this call does not require @info or its
* string members to continue to exist after the call returns.
*
* Returns: 0 on failure, the new #Type on success.