From e63d94995190248e00f6f5459d6d35fe5b3a33c2 Mon Sep 17 00:00:00 2001 From: Dag Wieers Date: Wed, 27 Sep 2017 20:44:22 +0200 Subject: [PATCH] Add a blank line, and use the Copyright format as used during rewrite So there is a discrepancy between the dev guide and what has been changed on disk by toshio. Not a big deal, but needlessly confusing. --- .../rst/dev_guide/developing_modules_documenting.rst | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/docs/docsite/rst/dev_guide/developing_modules_documenting.rst b/docs/docsite/rst/dev_guide/developing_modules_documenting.rst index d6aef3ba08..e4dbaf9f80 100644 --- a/docs/docsite/rst/dev_guide/developing_modules_documenting.rst +++ b/docs/docsite/rst/dev_guide/developing_modules_documenting.rst @@ -41,7 +41,8 @@ code. .. code-block:: python #!/usr/bin/python - # Copyright (c) 2017 Ansible Project + + # Copyright: (c) 2017, Ansible Project # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) Every file should have a copyright line with the original copyright holder. @@ -61,8 +62,9 @@ add the newer line above the older one, like so: .. code-block:: python #!/usr/bin/python - # Copyright (c) 2017 [New Contributor(s)] - # Copyright (c) 2015 [Original Contributor(s)] + + # Copyright: (c) 2017, [New Contributor(s)] + # Copyright: (c) 2015, [Original Contributor(s)] # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)