public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/devmanual:master commit in: general-concepts/slotting/, tasks-reference/completion/, ebuild-writing/eapi/, ...
@ 2020-04-07  9:34 Ulrich Müller
  0 siblings, 0 replies; only message in thread
From: Ulrich Müller @ 2020-04-07  9:34 UTC (permalink / raw
  To: gentoo-commits

commit:     d597abebdc99a7bc771bed0dd011fe45ce382bcc
Author:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Tue Apr  7 09:33:55 2020 +0000
Commit:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Tue Apr  7 09:33:55 2020 +0000
URL:        https://gitweb.gentoo.org/proj/devmanual.git/commit/?id=d597abeb

Remove unnecessary quotation marks.

According to the style guide.

Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>

 ebuild-maintenance/removal/text.xml         | 6 +++---
 ebuild-writing/eapi/text.xml                | 2 +-
 ebuild-writing/misc-files/metadata/text.xml | 2 +-
 general-concepts/slotting/text.xml          | 4 ++--
 tasks-reference/completion/text.xml         | 2 +-
 tools-reference/sed/text.xml                | 8 ++++----
 6 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/ebuild-maintenance/removal/text.xml b/ebuild-maintenance/removal/text.xml
index 1d8da69..eabbdaf 100644
--- a/ebuild-maintenance/removal/text.xml
+++ b/ebuild-maintenance/removal/text.xml
@@ -20,9 +20,9 @@ get a newer version marked stable, then please file a bug or ask on IRC.
 </p>
 
 <p>
-You should also not cause an unnecessary downgrade for any "<c>~arch</c>"
-when removing ebuilds <d/> instead, it is best to get the newest version
-marked "<c>~arch</c>" first and then remove redundant versions of the ebuild.
+You should also not cause an unnecessary downgrade for any <c>~arch</c> when
+removing ebuilds <d/> instead, it is best to get the newest version marked
+<c>~arch</c> first and then remove redundant versions of the ebuild.
 </p>
 
 </body>

diff --git a/ebuild-writing/eapi/text.xml b/ebuild-writing/eapi/text.xml
index aa4fdec..f51a458 100644
--- a/ebuild-writing/eapi/text.xml
+++ b/ebuild-writing/eapi/text.xml
@@ -88,7 +88,7 @@ Manager Specification for details about them.
 <dl>
   <dt>REQUIRED_USE supports new at-most-one-of operator</dt>
   <dd>
-    The new <b>at-most-one-of</b> operator consists of the string <c>'??'</c>,
+    The new <b>at-most-one-of</b> operator consists of the string <c>??</c>,
     and is satisfied if zero or one (but no more) of its child elements is
     matched.
   </dd>

diff --git a/ebuild-writing/misc-files/metadata/text.xml b/ebuild-writing/misc-files/metadata/text.xml
index 7756665..c4aa7bc 100644
--- a/ebuild-writing/misc-files/metadata/text.xml
+++ b/ebuild-writing/misc-files/metadata/text.xml
@@ -296,7 +296,7 @@ There are also some attributes that can be used with these tags:
     simply contains the name of the USE flag. For the
     &lt;slot&gt; tag, it specifies the
     <uri link="::general-concepts/slotting/#Slot Names">
-    slot name</uri> to which it applies. A slot name of <c>"*"</c>
+    slot name</uri> to which it applies. A slot name of <c>*</c>
     allows for a single &lt;slot&gt; tag to match all the slots of a
     package, in which case no other slot tags may be present.
   </ti>

diff --git a/general-concepts/slotting/text.xml b/general-concepts/slotting/text.xml
index 28e6696..d1adee1 100644
--- a/general-concepts/slotting/text.xml
+++ b/general-concepts/slotting/text.xml
@@ -102,8 +102,8 @@ interface changes.
 <body>
 <p>
 Current versions of portage accept slot and sub-slot names that begin with an
-alphanumeric character or <c>'_'</c>, and contain alphanumerics and <c>'_'</c>,
-<c>'-'</c>, <c>'.'</c>, and <c>'+'</c> characters.
+alphanumeric character or <c>_</c>, and contain alphanumerics and <c>_</c>,
+<c>-</c>, <c>.</c>, and <c>+</c> characters.
 </p>
 
 </body>

diff --git a/tasks-reference/completion/text.xml b/tasks-reference/completion/text.xml
index b6a6349..8d48003 100644
--- a/tasks-reference/completion/text.xml
+++ b/tasks-reference/completion/text.xml
@@ -260,7 +260,7 @@ complete -F _foo foo
       If the test returns true, show the available options, <c>${opts}</c>. The -W
       option to <c>compgen</c> tells bash to complete on the word list (string or
       something that evaluates to a string).  In the majority of cases, you'll
-      pass <c>'-- ${cur}'</c> to <c>compgen</c> telling it to only return those
+      pass <c>-- ${cur}</c> to <c>compgen</c> telling it to only return those
       completions that match <c>${cur}</c>.
     </ti>
   </tr>

diff --git a/tools-reference/sed/text.xml b/tools-reference/sed/text.xml
index 5f60828..aac3524 100644
--- a/tools-reference/sed/text.xml
+++ b/tools-reference/sed/text.xml
@@ -108,8 +108,8 @@ The term <e>pattern</e> refers to the description of text being matched.
 <body>
 
 <p>
-The most common form of <c>sed</c> is to replace all instances of <c>"some text"</c>
-with <c>"different content"</c>. This is done as follows:
+The most common form of <c>sed</c> is to replace all instances of
+<c>some text</c> with <c>different content</c>. This is done as follows:
 </p>
 
 <codesample lang="ebuild">
@@ -125,8 +125,8 @@ flag, only the first match on each line is replaced.
 </note>
 
 <warning>
-The above will replace <c>"irksome texting"</c> with
-<c>"irkdifferent contenting"</c>, which may not be desired.
+The above will replace <c>irksome texting</c> with
+<c>irkdifferent contenting</c>, which may not be desired.
 </warning>
 
 <p>


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2020-04-07  9:34 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-04-07  9:34 [gentoo-commits] proj/devmanual:master commit in: general-concepts/slotting/, tasks-reference/completion/, ebuild-writing/eapi/, Ulrich Müller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox