Skip to content

Commit 72300c4

Browse files
chore: fix example in README.md
1 parent e42f769 commit 72300c4

File tree

1 file changed

+12
-9
lines changed

1 file changed

+12
-9
lines changed

README.md

+12-9
Original file line numberDiff line numberDiff line change
@@ -61,14 +61,17 @@ A simple ERC20 token implementation.
6161
@external
6262
def transfer(to: address, amount: uint256) -> bool:
6363
"""
64-
Transfer tokens to a specified address.
65-
66-
Args:
67-
to: The recipient address
68-
amount: The amount of tokens to transfer
69-
70-
Returns:
71-
bool: True if transfer succeeded
64+
@notice
65+
Transfer tokens to a specified address.
66+
67+
@param
68+
to The recipient address
69+
70+
@param
71+
amount The amount of tokens to transfer
72+
73+
@return
74+
True if transfer succeeded
7275
"""
7376
# Implementation
7477
return True
@@ -106,4 +109,4 @@ See [CONTRIBUTING.md](CONTRIBUTING.md) for development setup and guidelines.
106109

107110
## License
108111

109-
MIT License - see LICENSE file for details
112+
MIT License - see LICENSE file for details

0 commit comments

Comments
 (0)