Received: by 10.223.185.116 with SMTP id b49csp1033810wrg; Fri, 16 Feb 2018 11:11:03 -0800 (PST) X-Google-Smtp-Source: AH8x226BjwkGmy1vg9S6NWow7V2HLCy9Jon4u9w5JWK/7prLJ7s81kbzXH26FKNan0ozesb9hwKz X-Received: by 10.98.11.90 with SMTP id t87mr6956433pfi.15.1518808263273; Fri, 16 Feb 2018 11:11:03 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1518808263; cv=none; d=google.com; s=arc-20160816; b=FiJhQjE3bKGKhUM70kepYb6yV9hRqH+gQ+SZjkNmu5jTLm+7sWL9LVyVgv7eSs52gz Ib9sQfoOiBno4GbzbakYYPe2uNv2wIi1NDxsOnFc+ZCpm5ory+8T9edpeNh3et8Xdrlf t154x/6HbXzw6Nhufsa5qBMDcMyCk97OuFzxC2rY6YE1kuufa4TBO6ttr6ExM6yqkqzr GtnaIIGXVLzXymsMc8H9KCsfvy6NEhDTtn20t/82RZrDa3NUeeydiLD3bMwQttgbieVw GyBGqCBkIVUZcTFGy+rf2LZj3pwbYFVxcRczW+3OT1Xc9Ye4Mbp8S8RQslYpFjTqbM4P qG/Q== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:references:in-reply-to:references :in-reply-to:message-id:date:subject:cc:to:from :arc-authentication-results; bh=rr+n98xPbCCs4ZeKYR2r1kUsLazM5KzLbv+ftccUnjM=; b=VS1WLlpRjdhlQ7yIg61LHsoL57j4DP4cWQzaNKfmFGVC5ogr/f2/nU6QOe0qph7kg2 G8ZUsZF19ls2AtSTosUtoZmT5u9/Xvh87UVPo0J3yH/WO8zorl0bG0/wZ4uBsrgqBLqM ZoGOiWaMYxdcl9qXAgFEnCY8iWZZUAc0/fN38BpDAicnQ4zbnLRdm8+l0xg6cHorxPtY 5/k2AqIAz4vUpEgGMX+IaQBDGsRz0mJiT0+GmoEiEVTqZsyTBHNw4GeAnlSQqsDKpY55 KLDTLHg+2n3e1v/3XjhRAKaQHdKenvmlGl4x2vjzRN4a+bE0PDjv6lY8frxWb0oYwsD5 +d1g== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id y92-v6si1989684plb.137.2018.02.16.11.10.49; Fri, 16 Feb 2018 11:11:03 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1032334AbeBPNsa (ORCPT + 99 others); Fri, 16 Feb 2018 08:48:30 -0500 Received: from osg.samsung.com ([64.30.133.232]:44082 "EHLO osg.samsung.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1032299AbeBPNs3 (ORCPT ); Fri, 16 Feb 2018 08:48:29 -0500 Received: from localhost (localhost [127.0.0.1]) by osg.samsung.com (Postfix) with ESMTP id AFEDE3463E; Fri, 16 Feb 2018 05:48:28 -0800 (PST) X-Virus-Scanned: Debian amavisd-new at dev.s-opensource.com X-Amavis-Alert: BAD HEADER SECTION, Duplicate header field: "References" Received: from osg.samsung.com ([127.0.0.1]) by localhost (localhost [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id PyJtfXe8c7wy; Fri, 16 Feb 2018 05:48:27 -0800 (PST) Received: from smtp.s-opensource.com (177.17.248.146.dynamic.adsl.gvt.net.br [177.17.248.146]) by osg.samsung.com (Postfix) with ESMTPSA id 5895334629; Fri, 16 Feb 2018 05:48:27 -0800 (PST) Received: from mchehab by smtp.s-opensource.com with local (Exim 4.89) (envelope-from ) id 1emgNE-0002xT-Tl; Fri, 16 Feb 2018 11:48:24 -0200 From: Mauro Carvalho Chehab To: Linux Doc Mailing List Cc: Mauro Carvalho Chehab , Mauro Carvalho Chehab , linux-kernel@vger.kernel.org, Jonathan Corbet , Jani Nikula , Matthew Wilcox , Tom Saeger Subject: [PATCH 2/6] doc-guide: kernel-doc: fix example for inlined comments Date: Fri, 16 Feb 2018 11:48:16 -0200 Message-Id: X-Mailer: git-send-email 2.14.3 In-Reply-To: References: In-Reply-To: References: Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Without ending with a ";", kernel-doc doesn't recognize it as an struct, and it fails to parse the example. Signed-off-by: Mauro Carvalho Chehab --- Documentation/doc-guide/kernel-doc.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/doc-guide/kernel-doc.rst b/Documentation/doc-guide/kernel-doc.rst index 9fce378dccb2..3c00ce0c84e5 100644 --- a/Documentation/doc-guide/kernel-doc.rst +++ b/Documentation/doc-guide/kernel-doc.rst @@ -237,7 +237,7 @@ on a line of their own, like all other kernel-doc comments:: int baz; /** @foobar: Single line description. */ int foobar; - } + }; Nested structs/unions ~~~~~~~~~~~~~~~~~~~~~ -- 2.14.3