Skip to content

Commit 72d8c4c

Browse files
authored
Fix: typos
Fix: typos
1 parent 7ace10a commit 72d8c4c

File tree

1 file changed

+2
-2
lines changed
  • contribution-guidelines/code-style-and-guidelines

1 file changed

+2
-2
lines changed

contribution-guidelines/code-style-and-guidelines/solidity.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ If a function is **not** `O(1)` , the first line of the `@dev` part of the ENSF
2424

2525
#### External Trust
2626

27-
For functions that make an external call with enough gas for re-entry, not `send` or `transfer`, specify **"UN/TRUSTED."** at the end of the `@dev` part of the ENSF comment. This tells readers wether the external call receiver is trusted or not, i.e. the code it executes is controlled.
27+
For functions that make an external call with enough gas for re-entry, not `send` or `transfer`, specify **"UN/TRUSTED."** at the end of the `@dev` part of the ENSF comment. This tells readers whether the external call receiver is trusted or not, i.e. the code it executes is controlled.
2828

2929
{% hint style="danger" %}
3030
Note that specifying a **contract type** for a variable **does not guarantee** that it will reference a contract of that **type** as any address can be coerced into any contract, and vice-versa.
@@ -51,7 +51,7 @@ Traditional back ends do most of the heavy lifting for the front end, because co
5151
Abstractions can be made to make front end developers' lives easier. Our [archon](https://github.com/kleros/archon) does just that for ERC 792 contracts.
5252
{% endhint %}
5353

54-
This and the security risks of smart contracts that interact with other smart contracts with complex and stateful interdependencies requires that we take a unique approach and mindset when developing smart contracts. Here are some general guidelines:
54+
This and the security risks of smart contracts that interact with other smart contracts with complex and stateful interdependencies require that we take a unique approach and mindset when developing smart contracts. Here are some general guidelines:
5555

5656
* If possible, i.e. does not lead to a significant increase in computation, externally called functions should follow this **3-step pattern**:
5757

0 commit comments

Comments
 (0)