Skip to content

Commit 4ef8b22

Browse files
authored
Update README.md
1 parent 5a73b98 commit 4ef8b22

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Solidity Upgrade
1+
# Solidity Refactor
22

33
This is a work in progress [Prettier Plugin](https://prettier.io/docs/en/plugins.html) for Refactoring [Solidity](https://github.com/ethereum/solidity) 0.4.X code to 0.5.X code.
44
This tool does the following tasks currently to refactor your soldiity 0.4.X code to work with solidity 0.5.X:
@@ -41,7 +41,7 @@ You may add the command script to your package.json file and then use `npm run s
4141
1) It does not add `payable` to addresses as it can not detect which addresses require to be payable. If you are using `addressA.send` or `addressA.transfer`, please manually declare them as `address payable addressA` rather than `address addressA`.
4242
2) It does not redefine expired variables. In solidity 0.4.X, variables persisted even outside their scope but in soldiity 0.5.x, you need to define them again.
4343
3) It does not fix illegal implicit conversions.
44-
4) Low level call now returns 2 parameters rather than 1. This plugin does not rafactor it.
44+
4) Low level `call` now returns 2 parameters rather than 1. This plugin does not rafactor it.
4545

4646
### Known bugs
4747
1) It does not work when the function body has only one comment and no statements.
@@ -50,4 +50,4 @@ You may add the command script to your package.json file and then use `npm run s
5050
1) Add test cases.
5151

5252
### Contributions of any kind are welcome.
53-
NOTE: This tool is still under early testing. Please always manually verify all your contracts after using this tool. It might have unexpected side-effects.
53+
NOTE: This tool is still under early testing. Please always manually verify all your contracts after using this tool.

0 commit comments

Comments
 (0)