aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMateusz Piotrowski <0mp@FreeBSD.org>2021-04-20 15:44:20 +0000
committerMateusz Piotrowski <0mp@FreeBSD.org>2021-04-20 15:45:54 +0000
commit5755cad0f0248f797648076b754900e9a19d6667 (patch)
treefa26a80590116f0c8c38ba28a0e6a1922eab8e02
parentbcd1bb7a20c7204bd9e2eaf5f3148a9157a47447 (diff)
downloaddoc-5755cad0f0248f797648076b754900e9a19d6667.tar.gz
doc-5755cad0f0248f797648076b754900e9a19d6667.zip
committers-guide: Fix indentation of commit message examples
-rw-r--r--documentation/content/en/articles/committers-guide/_index.adoc20
1 files changed, 10 insertions, 10 deletions
diff --git a/documentation/content/en/articles/committers-guide/_index.adoc b/documentation/content/en/articles/committers-guide/_index.adoc
index 0944750736..1b698c39a9 100644
--- a/documentation/content/en/articles/committers-guide/_index.adoc
+++ b/documentation/content/en/articles/committers-guide/_index.adoc
@@ -2618,7 +2618,7 @@ The commit message "PR" field is filled.
....
...
- PR: 12345
+PR: 12345
....
The committer sets the author of the patch with `git commit --author "John Smith <John.Smith@example.com>"`.
@@ -2636,7 +2636,7 @@ After posting patches to the appropriate mailing list (in this case, `freebsd-ar
....
...
- Reviewed by: -arch
+Reviewed by: -arch
....
====
@@ -2651,7 +2651,7 @@ Commit a port, after working with the listed MAINTAINER, who said to go ahead an
....
...
- Approved by: abc (maintainer)
+Approved by: abc (maintainer)
....
Where _abc_ is the account name of the person who approved.
@@ -2667,7 +2667,7 @@ Committing some code based on work done in the OpenBSD project.
....
...
- Obtained from: OpenBSD
+Obtained from: OpenBSD
....
====
@@ -2682,7 +2682,7 @@ Committing some code which will be merged from FreeBSD-CURRENT into the FreeBSD-
....
...
-MFC after: 2 weeks
+MFC after: 2 weeks
....
Where _2_ is the number of days, weeks, or months after which an MFC is planned. The _weeks_ option may be `day`, `days`, `week`, `weeks`, `month`, `months`.
@@ -2702,11 +2702,11 @@ The extra information to include in the commit would look something like
[.programlisting]
....
-PR: 54321
-Reviewed by: -arch
-Obtained from: NetBSD
-MFC after: 1 month
-Relnotes: yes
+PR: 54321
+Reviewed by: -arch
+Obtained from: NetBSD
+MFC after: 1 month
+Relnotes: yes
....
====