aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2016-08-30 22:31:11 +0800
committerGitHub <noreply@github.com>2016-08-30 22:31:11 +0800
commit6106bf98bbe19e419d5ee3a6454f6b4b79ebfc0d (patch)
treec31317da5d1260a73791b14634df11e895f38ab0 /docs
parentb9a119287d86944c2c17c5dcb0aa0348d191a5c1 (diff)
parentce454000606f0c4bbf66a5bfb13547f7fb2c32ec (diff)
downloaddexon-solidity-6106bf98bbe19e419d5ee3a6454f6b4b79ebfc0d.tar
dexon-solidity-6106bf98bbe19e419d5ee3a6454f6b4b79ebfc0d.tar.gz
dexon-solidity-6106bf98bbe19e419d5ee3a6454f6b4b79ebfc0d.tar.bz2
dexon-solidity-6106bf98bbe19e419d5ee3a6454f6b4b79ebfc0d.tar.lz
dexon-solidity-6106bf98bbe19e419d5ee3a6454f6b4b79ebfc0d.tar.xz
dexon-solidity-6106bf98bbe19e419d5ee3a6454f6b4b79ebfc0d.tar.zst
dexon-solidity-6106bf98bbe19e419d5ee3a6454f6b4b79ebfc0d.zip
Merge pull request #969 from Denton-L/fix-documentation
Fix bad syntax
Diffstat (limited to 'docs')
-rw-r--r--docs/installing-solidity.rst2
-rw-r--r--docs/units-and-global-variables.rst2
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/installing-solidity.rst b/docs/installing-solidity.rst
index f8393f2d..ad27e528 100644
--- a/docs/installing-solidity.rst
+++ b/docs/installing-solidity.rst
@@ -93,7 +93,7 @@ you should fork Solidity and add your personal fork as a second remote:
.. code:: bash
cd solidity
- git remote add personal git@github.com:\<username\>/solidity.git
+ git remote add personal git@github.com:[username]/solidity.git
Prerequisites - macOS
diff --git a/docs/units-and-global-variables.rst b/docs/units-and-global-variables.rst
index 3da3c547..9ee334cf 100644
--- a/docs/units-and-global-variables.rst
+++ b/docs/units-and-global-variables.rst
@@ -18,7 +18,7 @@ Suffixes like ``seconds``, ``minutes``, ``hours``, ``days``, ``weeks`` and
``years`` after literal numbers can be used to convert between units of time where seconds are the base
unit and units are considered naively in the following way:
- * ``1 == 1 second``
+ * ``1 == 1 seconds``
* ``1 minutes == 60 seconds``
* ``1 hours == 60 minutes``
* ``1 days == 24 hours``