Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
danhper committed Jul 26, 2024
1 parent d3b5687 commit b1ad7fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/differences_with_solidity.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ This section highlights some of the differences between Eclair and Solidity.
## Static vs dynamic typing

Solidity is statically typed, meaning that the type of each variable must be known at compile time and the compiler will check that the types are used correctly.
On the other hand, Eclair is not dynamically typed and variables are only checked at runtime. Furthermore, variables do not need to be declared explicitly.
On the other hand, Eclair is dynamically typed and variables are only checked at runtime. Furthermore, variables do not need to be declared explicitly.

```javascript
>> a = 1; // a is an integer
Expand Down

0 comments on commit b1ad7fb

Please sign in to comment.