{"id":3693,"url":"https://patchwork.libcamera.org/api/patches/3693/?format=json","web_url":"https://patchwork.libcamera.org/patch/3693/","project":{"id":1,"url":"https://patchwork.libcamera.org/api/projects/1/?format=json","name":"libcamera","link_name":"libcamera","list_id":"libcamera_core","list_email":"libcamera-devel@lists.libcamera.org","web_url":"","scm_url":"","webscm_url":""},"msgid":"<20200506202921.23731-1-laurent.pinchart@ideasonboard.com>","date":"2020-05-06T20:29:21","name":"[libcamera-devel] Documentation: coding-style: Fix ordered lists","commit_ref":"cfc9e148746e0629111e068447ce509cf8eb4b28","pull_url":null,"state":"accepted","archived":false,"hash":"98421664bacc50e8dda58279d0b2c5489649ef29","submitter":{"id":2,"url":"https://patchwork.libcamera.org/api/people/2/?format=json","name":"Laurent Pinchart","email":"laurent.pinchart@ideasonboard.com"},"delegate":null,"mbox":"https://patchwork.libcamera.org/patch/3693/mbox/","series":[{"id":882,"url":"https://patchwork.libcamera.org/api/series/882/?format=json","web_url":"https://patchwork.libcamera.org/project/libcamera/list/?series=882","date":"2020-05-06T20:29:21","name":"[libcamera-devel] Documentation: coding-style: Fix ordered lists","version":1,"mbox":"https://patchwork.libcamera.org/series/882/mbox/"}],"comments":"https://patchwork.libcamera.org/api/patches/3693/comments/","check":"pending","checks":"https://patchwork.libcamera.org/api/patches/3693/checks/","tags":{},"headers":{"Return-Path":"<laurent.pinchart@ideasonboard.com>","Received":["from perceval.ideasonboard.com (perceval.ideasonboard.com\n\t[IPv6:2001:4b98:dc2:55:216:3eff:fef7:d647])\n\tby lancelot.ideasonboard.com (Postfix) with ESMTPS id B2652603F2\n\tfor <libcamera-devel@lists.libcamera.org>;\n\tWed,  6 May 2020 22:29:32 +0200 (CEST)","from pendragon.bb.dnainternet.fi (81-175-216-236.bb.dnainternet.fi\n\t[81.175.216.236])\n\tby perceval.ideasonboard.com (Postfix) with ESMTPSA id 34789542\n\tfor <libcamera-devel@lists.libcamera.org>;\n\tWed,  6 May 2020 22:29:32 +0200 (CEST)"],"Authentication-Results":"lancelot.ideasonboard.com; dkim=pass (1024-bit key; \n\tunprotected) header.d=ideasonboard.com\n\theader.i=@ideasonboard.com\n\theader.b=\"YubshSYx\"; dkim-atps=neutral","DKIM-Signature":"v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com;\n\ts=mail; t=1588796972;\n\tbh=bQLkZR3nkYWzV3szoM0gMvZEsl5KMmw2ukn0ZOetOuE=;\n\th=From:To:Subject:Date:From;\n\tb=YubshSYxLObNzsQFalTsgucZT6rCAyADH0gsuC2I2csueEZILKwkiz56aUrsXQ3HR\n\tCWRNBxQQodwy5DyA7JxT2Ivy7FYqA2+2MA51BQq8FyewAU67+mYA75Q4L/EPdFKSEB\n\twQW3RqtcLHU2H4ZdUzUJl4mX7iOY/IcO1UO1IKpE=","From":"Laurent Pinchart <laurent.pinchart@ideasonboard.com>","To":"libcamera-devel@lists.libcamera.org","Date":"Wed,  6 May 2020 23:29:21 +0300","Message-Id":"<20200506202921.23731-1-laurent.pinchart@ideasonboard.com>","X-Mailer":"git-send-email 2.26.2","MIME-Version":"1.0","Content-Transfer-Encoding":"8bit","Subject":"[libcamera-devel] [PATCH] Documentation: coding-style: Fix ordered\n\tlists","X-BeenThere":"libcamera-devel@lists.libcamera.org","X-Mailman-Version":"2.1.29","Precedence":"list","List-Id":"<libcamera-devel.lists.libcamera.org>","List-Unsubscribe":"<https://lists.libcamera.org/options/libcamera-devel>,\n\t<mailto:libcamera-devel-request@lists.libcamera.org?subject=unsubscribe>","List-Archive":"<https://lists.libcamera.org/pipermail/libcamera-devel/>","List-Post":"<mailto:libcamera-devel@lists.libcamera.org>","List-Help":"<mailto:libcamera-devel-request@lists.libcamera.org?subject=help>","List-Subscribe":"<https://lists.libcamera.org/listinfo/libcamera-devel>,\n\t<mailto:libcamera-devel-request@lists.libcamera.org?subject=subscribe>","X-List-Received-Date":"Wed, 06 May 2020 20:29:32 -0000"},"content":"The syntax used for ordered lists is incorrect. Fix it.\n\nSigned-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>\n---\n Documentation/coding-style.rst | 12 ++++++------\n 1 file changed, 6 insertions(+), 6 deletions(-)","diff":"diff --git a/Documentation/coding-style.rst b/Documentation/coding-style.rst\nindex 95ca04f6150f..dfbbf28df8e7 100644\n--- a/Documentation/coding-style.rst\n+++ b/Documentation/coding-style.rst\n@@ -72,10 +72,10 @@ self-contained.\n \n The headers shall be grouped and ordered as follows.\n \n- # The header declaring the API being implemented (if any)\n- # The C and C++ system and standard library headers\n- # Other libraries' headers, with one group per library\n- # Other project's headers\n+1. The header declaring the API being implemented (if any)\n+2. The C and C++ system and standard library headers\n+3. Other libraries' headers, with one group per library\n+4. Other project's headers\n \n Groups of headers shall be separated by a single blank line. Headers within\n each group shall be sorted alphabetically.\n@@ -118,7 +118,7 @@ reference means using a reference passed by a caller without ownership transfer\n based on the assumption that the caller guarantees the validity of the\n reference for the duration of the operation that borrows it.\n \n-#. Single Owner Objects\n+1. Single Owner Objects\n \n    * By default an object has a single owner at any time.\n    * Storage of single owner objects varies depending on how the object\n@@ -155,7 +155,7 @@ reference for the duration of the operation that borrows it.\n        otherwise specified, pointers passed to functions are considered as\n        borrowed references valid for the duration of the function only.\n \n-#. Shared Objects\n+2. Shared Objects\n \n    * Objects that may have multiple owners at a given time are called shared\n      objects. They are reference-counted and live as long as any references to\n","prefixes":["libcamera-devel"]}