diff options
author | Stefan Weil | 2012-02-26 18:46:12 +0100 |
---|---|---|
committer | Stefan Hajnoczi | 2012-03-08 16:22:11 +0100 |
commit | 93148aa5c341810b0ecefdbe4e760fddb38d9085 (patch) | |
tree | 2bfed99d4c80f25b3b252c7fd81801775786141f /include/qemu | |
parent | vnc: Add break statement (diff) | |
download | qemu-93148aa5c341810b0ecefdbe4e760fddb38d9085.tar.gz qemu-93148aa5c341810b0ecefdbe4e760fddb38d9085.tar.xz qemu-93148aa5c341810b0ecefdbe4e760fddb38d9085.zip |
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/qemu')
-rw-r--r-- | include/qemu/object.h | 4 |
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. |