chiark / gitweb /
Fix documentation typos
authorluz paz <luzpaz@pm.me>
Sun, 17 Apr 2022 20:04:39 +0000 (16:04 -0400)
committerVladimír Vondruš <mosra@centrum.cz>
Fri, 13 May 2022 11:15:31 +0000 (13:15 +0200)
doc/css/page-layout.rst
doc/why.rst
documentation/doxygen.py

index faf6235e7137163c58708f6670d08b9908b0b413..bad598d1a48ef28b7cff240aca46cb147e752464 100644 (file)
@@ -383,7 +383,7 @@ markup together with 10-column grid setup around the main content:
       <div class="m-row">
         <article class="m-col-m-10 m-push-m-1">
           <h1>A page</h1>
-          <p>Some introductionary paragraph.</p>
+          <p>Some introductory paragraph.</p>
           <section>
             <h2>Features</h2>
             <p>Section providing feature overview.</p>
@@ -405,7 +405,7 @@ landing pages. The major component of a landing page is a cover image in the
 background, spanning the whole page width in a :css:`#m-landing-image` element.
 The image is covered by :css:`#m-landing-cover` element that blends the image
 into the background on the bottom. On top of it you have full freedom to put
-any layout you need, for example a logo, a short introductionary paragraph and
+any layout you need, for example a logo, a short introductory paragraph and
 a download button. Note that the grid setup has to only wrap the content "below
 the fold", *not* the cover image.
 
@@ -514,7 +514,7 @@ Consider the following code snippet:
 
     <article>
       <h1>A page</h1>
-      <p>Some introductionary paragraph.</p>
+      <p>Some introductory paragraph.</p>
       <section id="features">
         <h2><a href="#features">Features</a></h2>
         <p>Section providing feature overview.</p>
@@ -526,7 +526,7 @@ Consider the following code snippet:
     </article>
 
 Clicking on either the "Features" or "Pricing" heading will give the user a
-direct link to given section and the section will be highlighed accordingly.
+direct link to given section and the section will be highlighted accordingly.
 This works for nested sections as well.
 
 .. note-success::
index ecb27b21d5ecaa96f352be1bc85a90a8910cf026..8e8abdf25262f67bab74efdfa55244ea7425bcc3 100644 (file)
@@ -108,7 +108,7 @@ thought out, amazingly flexible and easily extensible to support
 .. note-warning::
 
     By all means, use Jekyll or Hugo, if you want --- but I can't promise that
-    all the :abbr:`reST <reStructuredText>` extensions I did are transferrable
+    all the :abbr:`reST <reStructuredText>` extensions I did are transferable
     elsewhere.
 
 Why the name?
index 2be78596882059a5e3636738129218eb5dd54ec9..5fa5d6e68d36a07b47fcc19eaacd2389718cb566 100755 (executable)
@@ -2157,7 +2157,7 @@ def parse_func(state: State, element: ET.Element):
             state.search += [result]
 
     # Return the function only if it has some documentation. Testing just for
-    # func.has_details would errorneously omit functions that have e.g. just
+    # func.has_details would erroneously omit functions that have e.g. just
     # /** @overload */ from file docs.
     return func if func.brief or can_have_details else None