* [Qemu-trivial] [PATCH] Fix spelling in documentation @ 2012-02-25 12:47 Stefan Weil 2012-02-25 12:47 ` [Qemu-trivial] [PATCH] qmp: Fix spelling fourty -> forty Stefan Weil 2012-03-05 13:08 ` [Qemu-trivial] [Qemu-devel] [PATCH] Fix spelling in documentation Stefan Hajnoczi 0 siblings, 2 replies; 4+ messages in thread From: Stefan Weil @ 2012-02-25 12:47 UTC (permalink / raw) To: qemu-trivial; +Cc: Stefan Weil, qemu-devel This fixes a new spelling issue which was detected by codespell. Signed-off-by: Stefan Weil <sw@weilnetz.de> --- include/qemu/object.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/include/qemu/object.h b/include/qemu/object.h index 69e4b7b..dd7f3c0 100644 --- a/include/qemu/object.h +++ b/include/qemu/object.h @@ -288,7 +288,7 @@ struct Object * implementing an explicit class type if they are not adding additional * virtual functions. * @class_init: This function is called after all parent class initialization - * has occured to allow a class to set its default virtual method pointers. + * has occurred to allow a class to set its default virtual method pointers. * This is also the function to use to override virtual methods from a parent * class. * @class_finalize: This function is called during class destruction and is -- 1.7.9 ^ permalink raw reply related [flat|nested] 4+ messages in thread
* [Qemu-trivial] [PATCH] qmp: Fix spelling fourty -> forty 2012-02-25 12:47 [Qemu-trivial] [PATCH] Fix spelling in documentation Stefan Weil @ 2012-02-25 12:47 ` Stefan Weil 2012-02-28 20:34 ` [Qemu-trivial] [Qemu-devel] " Luiz Capitulino 2012-03-05 13:08 ` [Qemu-trivial] [Qemu-devel] [PATCH] Fix spelling in documentation Stefan Hajnoczi 1 sibling, 1 reply; 4+ messages in thread From: Stefan Weil @ 2012-02-25 12:47 UTC (permalink / raw) To: qemu-trivial; +Cc: Stefan Weil, qemu-devel This was found by codespell. Signed-off-by: Stefan Weil <sw@weilnetz.de> --- test-qmp-output-visitor.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test-qmp-output-visitor.c b/test-qmp-output-visitor.c index c94c208..5452cd4 100644 --- a/test-qmp-output-visitor.c +++ b/test-qmp-output-visitor.c @@ -221,8 +221,8 @@ static void test_visitor_out_struct_nested(TestOutputVisitorData *data, QObject *obj; QDict *qdict, *dict1, *dict2, *dict3, *userdef; const char *string = "user def string"; - const char *strings[] = { "fourty two", "fourty three", "fourty four", - "fourty five" }; + const char *strings[] = { "forty two", "forty three", "forty four", + "forty five" }; ud2 = g_malloc0(sizeof(*ud2)); ud2->string0 = g_strdup(strings[0]); -- 1.7.9 ^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [Qemu-trivial] [Qemu-devel] [PATCH] qmp: Fix spelling fourty -> forty 2012-02-25 12:47 ` [Qemu-trivial] [PATCH] qmp: Fix spelling fourty -> forty Stefan Weil @ 2012-02-28 20:34 ` Luiz Capitulino 0 siblings, 0 replies; 4+ messages in thread From: Luiz Capitulino @ 2012-02-28 20:34 UTC (permalink / raw) To: Stefan Weil; +Cc: qemu-trivial, qemu-devel On Sat, 25 Feb 2012 13:47:10 +0100 Stefan Weil <sw@weilnetz.de> wrote: > This was found by codespell. > > Signed-off-by: Stefan Weil <sw@weilnetz.de> Acked-by: Luiz Capitulino <lcapitulino@redhat.com> > --- > test-qmp-output-visitor.c | 4 ++-- > 1 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/test-qmp-output-visitor.c b/test-qmp-output-visitor.c > index c94c208..5452cd4 100644 > --- a/test-qmp-output-visitor.c > +++ b/test-qmp-output-visitor.c > @@ -221,8 +221,8 @@ static void test_visitor_out_struct_nested(TestOutputVisitorData *data, > QObject *obj; > QDict *qdict, *dict1, *dict2, *dict3, *userdef; > const char *string = "user def string"; > - const char *strings[] = { "fourty two", "fourty three", "fourty four", > - "fourty five" }; > + const char *strings[] = { "forty two", "forty three", "forty four", > + "forty five" }; > > ud2 = g_malloc0(sizeof(*ud2)); > ud2->string0 = g_strdup(strings[0]); ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Qemu-trivial] [Qemu-devel] [PATCH] Fix spelling in documentation 2012-02-25 12:47 [Qemu-trivial] [PATCH] Fix spelling in documentation Stefan Weil 2012-02-25 12:47 ` [Qemu-trivial] [PATCH] qmp: Fix spelling fourty -> forty Stefan Weil @ 2012-03-05 13:08 ` Stefan Hajnoczi 1 sibling, 0 replies; 4+ messages in thread From: Stefan Hajnoczi @ 2012-03-05 13:08 UTC (permalink / raw) To: Stefan Weil; +Cc: qemu-trivial, qemu-devel On Sat, Feb 25, 2012 at 01:47:09PM +0100, Stefan Weil wrote: > This fixes a new spelling issue which was detected by codespell. > > Signed-off-by: Stefan Weil <sw@weilnetz.de> > --- > include/qemu/object.h | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) Thanks, applied to the trivial patches tree: https://github.com/stefanha/qemu/commits/trivial-patches Stefan ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2012-03-05 13:09 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2012-02-25 12:47 [Qemu-trivial] [PATCH] Fix spelling in documentation Stefan Weil 2012-02-25 12:47 ` [Qemu-trivial] [PATCH] qmp: Fix spelling fourty -> forty Stefan Weil 2012-02-28 20:34 ` [Qemu-trivial] [Qemu-devel] " Luiz Capitulino 2012-03-05 13:08 ` [Qemu-trivial] [Qemu-devel] [PATCH] Fix spelling in documentation Stefan Hajnoczi
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).