aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2020-04-07 11:33:55 +0200
committerUlrich Müller <ulm@gentoo.org>2020-04-07 11:33:55 +0200
commitd597abebdc99a7bc771bed0dd011fe45ce382bcc (patch)
tree8d322d364013d8fadaee843b1209e4922dbb42b9
parentebuild-writing/eapi: Reformat the lists. (diff)
downloaddevmanual-d597abebdc99a7bc771bed0dd011fe45ce382bcc.tar.gz
devmanual-d597abebdc99a7bc771bed0dd011fe45ce382bcc.tar.bz2
devmanual-d597abebdc99a7bc771bed0dd011fe45ce382bcc.zip
Remove unnecessary quotation marks.
According to the style guide. Signed-off-by: Ulrich Müller <ulm@gentoo.org>
-rw-r--r--ebuild-maintenance/removal/text.xml6
-rw-r--r--ebuild-writing/eapi/text.xml2
-rw-r--r--ebuild-writing/misc-files/metadata/text.xml2
-rw-r--r--general-concepts/slotting/text.xml4
-rw-r--r--tasks-reference/completion/text.xml2
-rw-r--r--tools-reference/sed/text.xml8
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>