* [bug#63575] [PATCH 0/2] Fix typos in documentation.
@ 2023-05-18 17:48 Felix Lechner via Guix-patches via
2023-05-18 17:50 ` [bug#63575] [PATCH 1/2] doc: contributing.texi: Specify recipient via equal sign in 'git send-email --to' Felix Lechner via Guix-patches via
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Felix Lechner via Guix-patches via @ 2023-05-18 17:48 UTC (permalink / raw)
To: 63575; +Cc: Felix Lechner
This patch series fixes two classes of typos in the documentation.
Felix Lechner (2):
doc: contributing.texi: Specify recipient via equal sign in 'git
send-email --to'.
doc: guix.texi: Add Texinfo line breaks.
doc/contributing.texi | 6 +++---
doc/guix.texi | 4 ++--
2 files changed, 5 insertions(+), 5 deletions(-)
base-commit: 5b700945fb0b33eec410de8979cae2fbf0d4f118
--
2.40.1
^ permalink raw reply [flat|nested] 4+ messages in thread
* [bug#63575] [PATCH 1/2] doc: contributing.texi: Specify recipient via equal sign in 'git send-email --to'.
2023-05-18 17:48 [bug#63575] [PATCH 0/2] Fix typos in documentation Felix Lechner via Guix-patches via
@ 2023-05-18 17:50 ` Felix Lechner via Guix-patches via
2023-05-18 17:50 ` [bug#63575] [PATCH 2/2] doc: guix.texi: Add Texinfo line breaks Felix Lechner via Guix-patches via
2023-05-24 12:04 ` bug#63575: [PATCH 0/2] Fix typos in documentation Ludovic Courtès
2 siblings, 0 replies; 4+ messages in thread
From: Felix Lechner via Guix-patches via @ 2023-05-18 17:50 UTC (permalink / raw)
To: 63575; +Cc: Felix Lechner
The documentation for git send-email recommends the use of an equal sign when
specifying a recipient with the --to option. [1] Adjusts the reference manual
accordingly.
[1] https://git-scm.com/docs/git-send-email
* doc (contributing.texi): Specify recipient via equal sign in
'git send-email --to'.
---
doc/contributing.texi | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/doc/contributing.texi b/doc/contributing.texi
index 7bf350ee0d..f692872c04 100644
--- a/doc/contributing.texi
+++ b/doc/contributing.texi
@@ -1529,7 +1529,7 @@ the patchset.
@example
$ git send-email -@var{NUMBER_COMMITS} -v@var{REVISION} \
- --to @var{ISSUE_NUMBER}@@debbugs.gnu.org
+ --to=@var{ISSUE_NUMBER}@@debbugs.gnu.org
@end example
If need be, you may use @option{--cover-letter --annotate} to send
@@ -1561,7 +1561,7 @@ You can run the following command to have the @code{Mentors} team put in
CC of a patch series:
@example
-$ git send-email --to @var{ISSUE_NUMBER}@@debbugs.gnu.org \
+$ git send-email --to=@var{ISSUE_NUMBER}@@debbugs.gnu.org \
--header-cmd='etc/teams.scm cc-mentors-header-cmd' *.patch
@end example
@@ -1571,7 +1571,7 @@ current Git repository to review, you can run:
@example
$ guix shell -D guix
-[env]$ git send-email --to @var{ISSUE_NUMBER}@@debbugs.gnu.org -2
+[env]$ git send-email --to=@var{ISSUE_NUMBER}@@debbugs.gnu.org -2
@end example
@node Tracking Bugs and Patches
--
2.40.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [bug#63575] [PATCH 2/2] doc: guix.texi: Add Texinfo line breaks.
2023-05-18 17:48 [bug#63575] [PATCH 0/2] Fix typos in documentation Felix Lechner via Guix-patches via
2023-05-18 17:50 ` [bug#63575] [PATCH 1/2] doc: contributing.texi: Specify recipient via equal sign in 'git send-email --to' Felix Lechner via Guix-patches via
@ 2023-05-18 17:50 ` Felix Lechner via Guix-patches via
2023-05-24 12:04 ` bug#63575: [PATCH 0/2] Fix typos in documentation Ludovic Courtès
2 siblings, 0 replies; 4+ messages in thread
From: Felix Lechner via Guix-patches via @ 2023-05-18 17:50 UTC (permalink / raw)
To: 63575; +Cc: Felix Lechner
Adds two line breaks to the copyright block. The same kind of breaks [1] are
present in the remaining fifty-five entries.
[1] https://www.gnu.org/software/texinfo/manual/texinfo/texinfo.html#Line-Breaks
* doc (guix.texi): Add Texinfo line breaks.
---
doc/guix.texi | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/doc/guix.texi b/doc/guix.texi
index 60972f408d..8315c8e791 100644
--- a/doc/guix.texi
+++ b/doc/guix.texi
@@ -113,8 +113,8 @@ Copyright @copyright{} 2022–2023 Bruno Victal@*
Copyright @copyright{} 2022 Ivan Vilata-i-Balaguer@*
Copyright @copyright{} 2023 Giacomo Leidi@*
Copyright @copyright{} 2022 Antero Mejr@*
-Copyright @copyright{} 2023 Karl Hallsby
-Copyright @copyright{} 2023 Nathaniel Nicandro
+Copyright @copyright{} 2023 Karl Hallsby@*
+Copyright @copyright{} 2023 Nathaniel Nicandro@*
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.3 or
--
2.40.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* bug#63575: [PATCH 0/2] Fix typos in documentation.
2023-05-18 17:48 [bug#63575] [PATCH 0/2] Fix typos in documentation Felix Lechner via Guix-patches via
2023-05-18 17:50 ` [bug#63575] [PATCH 1/2] doc: contributing.texi: Specify recipient via equal sign in 'git send-email --to' Felix Lechner via Guix-patches via
2023-05-18 17:50 ` [bug#63575] [PATCH 2/2] doc: guix.texi: Add Texinfo line breaks Felix Lechner via Guix-patches via
@ 2023-05-24 12:04 ` Ludovic Courtès
2 siblings, 0 replies; 4+ messages in thread
From: Ludovic Courtès @ 2023-05-24 12:04 UTC (permalink / raw)
To: Felix Lechner; +Cc: 63575-done
Felix Lechner <felix.lechner@lease-up.com> skribis:
> doc: contributing.texi: Specify recipient via equal sign in 'git
> send-email --to'.
> doc: guix.texi: Add Texinfo line breaks.
Applied, thanks!
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2023-05-24 12:06 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-05-18 17:48 [bug#63575] [PATCH 0/2] Fix typos in documentation Felix Lechner via Guix-patches via
2023-05-18 17:50 ` [bug#63575] [PATCH 1/2] doc: contributing.texi: Specify recipient via equal sign in 'git send-email --to' Felix Lechner via Guix-patches via
2023-05-18 17:50 ` [bug#63575] [PATCH 2/2] doc: guix.texi: Add Texinfo line breaks Felix Lechner via Guix-patches via
2023-05-24 12:04 ` bug#63575: [PATCH 0/2] Fix typos in documentation Ludovic Courtès
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.