diff options
author | Peter Maydell | 2013-03-18 18:20:07 +0100 |
---|---|---|
committer | Stefan Hajnoczi | 2013-03-22 13:25:07 +0100 |
commit | 085d813407453e498e05c37d988efba8c6f5af0a (patch) | |
tree | 3bc30c89ef521b114d59f11ed0fa8a2039faf53a /include/qom | |
parent | Advertise --libdir in configure --help output (diff) | |
download | qemu-085d813407453e498e05c37d988efba8c6f5af0a.tar.gz qemu-085d813407453e498e05c37d988efba8c6f5af0a.tar.xz qemu-085d813407453e498e05c37d988efba8c6f5af0a.zip |
Fix typos and misspellings
Fix various typos and misspellings. The bulk of these were found with
codespell.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Stefan Weil <sw@weilnetz.de>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'include/qom')
-rw-r--r-- | include/qom/object.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/qom/object.h b/include/qom/object.h index cf094e7142..d0f99c5782 100644 --- a/include/qom/object.h +++ b/include/qom/object.h @@ -202,7 +202,7 @@ typedef struct InterfaceInfo InterfaceInfo; * Methods are always <emphasis>virtual</emphasis>. Overriding a method in * #TypeInfo.class_init of a subclass leads to any user of the class obtained * via OBJECT_GET_CLASS() accessing the overridden function. - * The original function is not automatically invoked. It is the responsability + * The original function is not automatically invoked. It is the responsibility * of the overriding class to determine whether and when to invoke the method * being overridden. * |