summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMarcel Ribeiro Dantas, Ph.D <ribeirodantasdm@gmail.com>2022-07-13 22:14:14 +0200
committerGitHub <noreply@github.com>2022-07-13 22:14:14 +0200
commit7b055600a804135fba90950f6566a5a9d86577a3 (patch)
tree3ebcd73cd916620a5e9994e6cc561e22be43c35e
parentc885544fefaf57f835a4338f0d51ef79ca512399 (diff)
parenta667cf999793aef05e509c85effcfd2453f9a66a (diff)
Merge pull request #4302 from taivlam/master
[nim and rst/en] Fix typo in comment
-rw-r--r--nim.html.markdown2
-rw-r--r--rst.html.markdown6
2 files changed, 4 insertions, 4 deletions
diff --git a/nim.html.markdown b/nim.html.markdown
index 9730e579..b10bd75a 100644
--- a/nim.html.markdown
+++ b/nim.html.markdown
@@ -142,7 +142,7 @@ when compileBadCode:
# Arrays
type
- RollCounter = array[DieFaces, int] # Array's are fixed length and
+ RollCounter = array[DieFaces, int] # Arrays are fixed length and
DirNames = array[Direction, string] # indexed by any ordinal type.
Truths = array[42..44, bool]
var
diff --git a/rst.html.markdown b/rst.html.markdown
index 56d54501..c177fdb4 100644
--- a/rst.html.markdown
+++ b/rst.html.markdown
@@ -33,7 +33,7 @@ $ pip install docutils
A simple example of the file syntax:
```
-.. Lines starting with two dots are special commands. But if no command can be found, the line is considered as a comment
+.. Lines starting with two dots are special commands. But if no command can be found, the line is considered as a comment.
=========================================================
Main titles are written using equals signs over and under
@@ -80,12 +80,12 @@ France Paris
Japan Tokyo
=========== ========
-More complex tables can be done easily (merged columns and/or rows) but I suggest you to read the complete doc for this :)
+More complex tables can be done easily (merged columns and/or rows) but I suggest you to read the complete doc for this. :)
There are multiple ways to make links:
- By adding an underscore after a word : Github_ and by adding the target URL after the text (this way has the advantage of not inserting unnecessary URLs in the visible text).
-- By typing a full comprehensible URL : https://github.com/ (will be automatically converted to a link)
+- By typing a full comprehensible URL : https://github.com/ (will be automatically converted to a link).
- By making a more Markdown-like link: `Github <https://github.com/>`_ .
.. _Github: https://github.com/