From patchwork Sat Feb 25 12:47:09 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Weil X-Patchwork-Id: 143049 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [140.186.70.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 89B14B6FB9 for ; Sat, 25 Feb 2012 23:47:35 +1100 (EST) Received: from localhost ([::1]:41395 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S1H2D-0003SB-22 for incoming@patchwork.ozlabs.org; Sat, 25 Feb 2012 07:47:33 -0500 Received: from eggs.gnu.org ([208.118.235.92]:44526) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S1H1z-0003M9-Tc for qemu-devel@nongnu.org; Sat, 25 Feb 2012 07:47:24 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1S1H1t-0004Jo-RK for qemu-devel@nongnu.org; Sat, 25 Feb 2012 07:47:19 -0500 Received: from v220110690675601.yourvserver.net ([78.47.199.172]:36775) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S1H1t-0004Jd-Ll; Sat, 25 Feb 2012 07:47:13 -0500 Received: from localhost (v220110690675601.yourvserver.net.local [127.0.0.1]) by v220110690675601.yourvserver.net (Postfix) with ESMTP id 533D0728009B; Sat, 25 Feb 2012 13:47:12 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at weilnetz.de Received: from v220110690675601.yourvserver.net ([127.0.0.1]) by localhost (v220110690675601.yourvserver.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id uKHa68ZW+gPZ; Sat, 25 Feb 2012 13:47:11 +0100 (CET) Received: by v220110690675601.yourvserver.net (Postfix, from userid 1000) id DE1A3728009A; Sat, 25 Feb 2012 13:47:11 +0100 (CET) From: Stefan Weil To: qemu-trivial Date: Sat, 25 Feb 2012 13:47:09 +0100 Message-Id: <1330174030-21373-1-git-send-email-sw@weilnetz.de> X-Mailer: git-send-email 1.7.9 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 78.47.199.172 Cc: Stefan Weil , qemu-devel@nongnu.org Subject: [Qemu-devel] [PATCH] Fix spelling in documentation X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org This fixes a new spelling issue which was detected by codespell. Signed-off-by: Stefan Weil --- 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