diff options
author | chriseth <chris@ethereum.org> | 2017-05-02 21:59:41 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-02 21:59:41 +0800 |
commit | 1b15291af2342f65d784032b4508706100b5b016 (patch) | |
tree | e1f70122d298cebbd113f029d7f83f00f9cfa499 /docs | |
parent | f42a9a9408cf92258104e0839b700640f5edd06c (diff) | |
parent | fabf15de9ec565213b7da8f1d190db3b00561c5d (diff) | |
download | dexon-solidity-1b15291af2342f65d784032b4508706100b5b016.tar.gz dexon-solidity-1b15291af2342f65d784032b4508706100b5b016.tar.zst dexon-solidity-1b15291af2342f65d784032b4508706100b5b016.zip |
Merge pull request #2201 from FedericoCapello/patch-1
Update units-and-global-variables.rst (Typo)
Diffstat (limited to 'docs')
-rw-r--r-- | docs/units-and-global-variables.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/units-and-global-variables.rst b/docs/units-and-global-variables.rst index ab957c7d..246cc564 100644 --- a/docs/units-and-global-variables.rst +++ b/docs/units-and-global-variables.rst @@ -22,8 +22,8 @@ unit and units are considered naively in the following way: * ``1 minutes == 60 seconds`` * ``1 hours == 60 minutes`` * ``1 days == 24 hours`` - * ``1 weeks = 7 days`` - * ``1 years = 365 days`` + * ``1 weeks == 7 days`` + * ``1 years == 365 days`` Take care if you perform calendar calculations using these units, because not every year equals 365 days and not even every day has 24 hours |