Skip to content

Commit 7b6d5fd

Browse files
committed
fix: broken link label
1 parent 3b61c55 commit 7b6d5fd

File tree

1 file changed

+1
-2
lines changed
  • public/content/developers/tutorials/erc-721-vyper-annotated-code

1 file changed

+1
-2
lines changed

public/content/developers/tutorials/erc-721-vyper-annotated-code/index.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -278,8 +278,7 @@ def supportsInterface(_interfaceID: bytes32) -> bool:
278278
```
279279

280280
In contrast to Python, Vyper is a [static typed language](https://wikipedia.org/wiki/Type_system#Static_type_checking).
281-
You can't declare a variable, or a function parameter, without identifying the [data
282-
type](https://vyper.readthedocs.io/en/latest/types.html). In this case the input parameter is `bytes32`, a 256-bit value
281+
You can't declare a variable, or a function parameter, without identifying the [data type](https://vyper.readthedocs.io/en/latest/types.html). In this case the input parameter is `bytes32`, a 256-bit value
283282
(256 bits is the native word size of the [Ethereum Virtual Machine](/developers/docs/evm/)). The output is a boolean
284283
value. By convention, the names of function parameters start with an underscore (`_`).
285284

0 commit comments

Comments
 (0)