summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorErsikan <julien.philippon@epitech.eu>2021-03-30 17:44:15 +0200
committerDavid Peter <sharkdp@users.noreply.github.com>2021-05-12 11:42:17 +0200
commite219c8fc03b632272d7a75f30f364fcdcee0a9b0 (patch)
tree844897833b142626b766514d533a710aaa0fd80e
parent9eb26b702c0a7a8e501ebcec1cb38fbf1d7e196f (diff)
Update SublimeEthereum version
A fix I submitted upstream was merged, and this commit bumps the submodule to include it.
m---------assets/syntaxes/02_Extra/SublimeEthereum0
-rw-r--r--tests/syntax-tests/highlighted/Solidity/ERC721.sol2
-rw-r--r--tests/syntax-tests/highlighted/Vyper/crowdsale.vy2
3 files changed, 2 insertions, 2 deletions
diff --git a/assets/syntaxes/02_Extra/SublimeEthereum b/assets/syntaxes/02_Extra/SublimeEthereum
-Subproject 4f775259cd15a50a3a18f433cbd4024f46d30ce
+Subproject b60e0a3e00e68263fcf35ba1a2e0bd0f6e3544f
diff --git a/tests/syntax-tests/highlighted/Solidity/ERC721.sol b/tests/syntax-tests/highlighted/Solidity/ERC721.sol
index a04bea91..7a30e357 100644
--- a/tests/syntax-tests/highlighted/Solidity/ERC721.sol
+++ b/tests/syntax-tests/highlighted/Solidity/ERC721.sol
@@ -15,7 +15,7 @@
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
-contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
+contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
 using Address for address;
 using Strings for uint256;
diff --git a/tests/syntax-tests/highlighted/Vyper/crowdsale.vy b/tests/syntax-tests/highlighted/Vyper/crowdsale.vy
index c2eb7cc6..4f5f3217 100644
--- a/tests/syntax-tests/highlighted/Vyper/crowdsale.vy
+++ b/tests/syntax-tests/highlighted/Vyper/crowdsale.vy
@@ -10,7 +10,7 @@
#@dev ERC20/223 Features referenced by this contract
-contract TokenContract:
+contract TokenContract:
 def transfer(_to: address, _value: uint256) -> bool: modifying
# Event for token purchase logging