aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRytis Slatkevičius <rytis.s@gmail.com>2018-08-08 17:14:39 +0800
committerGitHub <noreply@github.com>2018-08-08 17:14:39 +0800
commit7cc9ab7d72edc251d00fb60d1a36751e700004e4 (patch)
treecb4bd61d628c2686a9b678d39baa612ba8ecf300
parent4dc3335cda18bae7c683227a9795a7cc1de95fd2 (diff)
downloaddexon-solidity-7cc9ab7d72edc251d00fb60d1a36751e700004e4.tar
dexon-solidity-7cc9ab7d72edc251d00fb60d1a36751e700004e4.tar.gz
dexon-solidity-7cc9ab7d72edc251d00fb60d1a36751e700004e4.tar.bz2
dexon-solidity-7cc9ab7d72edc251d00fb60d1a36751e700004e4.tar.lz
dexon-solidity-7cc9ab7d72edc251d00fb60d1a36751e700004e4.tar.xz
dexon-solidity-7cc9ab7d72edc251d00fb60d1a36751e700004e4.tar.zst
dexon-solidity-7cc9ab7d72edc251d00fb60d1a36751e700004e4.zip
Fix typo in Solidity name/url
-rw-r--r--Changelog.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/Changelog.md b/Changelog.md
index 0790c0ca..bb6684cf 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -57,7 +57,7 @@ Breaking Changes:
* Type Checker: Interface functions must be declared external. This was already the case in the experimental 0.5.0 mode.
* Type Checker: Address members are not included in contract types anymore. An explicit conversion is now required before invoking an ``address`` member from a contract.
* Type Checker: Disallow "loose assembly" syntax entirely. This means that jump labels, jumps and non-functional instructions cannot be used anymore.
- * Remove obsolete ``std`` directory from the Solidity repository. This means accessing ``https://github.com/ethereum/soldity/blob/develop/std/*.sol`` (or ``https://github.com/ethereum/solidity/std/*.sol`` in Remix) will not be possible.
+ * Remove obsolete ``std`` directory from the Solidity repository. This means accessing ``https://github.com/ethereum/solidity/blob/develop/std/*.sol`` (or ``https://github.com/ethereum/solidity/std/*.sol`` in Remix) will not be possible.
* References Resolver: Turn missing storage locations into an error. This was already the case in the experimental 0.5.0 mode.
* Syntax Checker: Disallow functions without implementation to use modifiers. This was already the case in the experimental 0.5.0 mode.
* Syntax Checker: Named return values in function types are an error.