[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <f50f8ce4-96f1-5586-173e-1d8e1a31d598@infradead.org>
Date: Tue, 26 Sep 2017 19:04:01 -0700
From: Randy Dunlap <rdunlap@...radead.org>
To: Mauro Carvalho Chehab <mchehab@...pensource.com>,
Linux Media Mailing List <linux-media@...r.kernel.org>,
Jonathan Corbet <corbet@....net>
Cc: Mauro Carvalho Chehab <mchehab@...radead.org>,
Linux Doc Mailing List <linux-doc@...r.kernel.org>,
linux-kernel@...r.kernel.org,
Daniel Vetter <daniel.vetter@...ll.ch>
Subject: Re: [PATCH 02/10] docs: kernel-doc.rst: better describe kernel-doc
arguments
On 09/26/17 10:59, Mauro Carvalho Chehab wrote:
> Add a new section to describe kernel-doc arguments,
> adding examples about how identation should happen, as failing
> to do that causes Sphinx to do the wrong thing.
>
> Signed-off-by: Mauro Carvalho Chehab <mchehab@...pensource.com>
> ---
> Documentation/doc-guide/kernel-doc.rst | 44 +++++++++++++++++++++++++++++++---
> 1 file changed, 41 insertions(+), 3 deletions(-)
>
> diff --git a/Documentation/doc-guide/kernel-doc.rst b/Documentation/doc-guide/kernel-doc.rst
> index b24854b5d6be..7a3f5c710c0b 100644
> --- a/Documentation/doc-guide/kernel-doc.rst
> +++ b/Documentation/doc-guide/kernel-doc.rst
> @@ -112,16 +112,17 @@ Example kernel-doc function comment::
>
> /**
> * foobar() - Brief description of foobar.
> - * @arg: Description of argument of foobar.
> + * @argument1: Description of parameter argument1 of foobar.
> + * @argument1: Description of parameter argument2 of foobar.
@argument2:
> *
> * Longer description of foobar.
> *
> * Return: Description of return value of foobar.
> */
> - int foobar(int arg)
> + int foobar(int argument1, char *argument2)
--
~Randy
Powered by blists - more mailing lists