Skip to content

Commit

Permalink
Merge pull request #297 from zama-ai/docs/fix-typo-visibility
Browse files Browse the repository at this point in the history
docs: fixed typo on variable visibility
  • Loading branch information
jatZama authored Mar 1, 2024
2 parents 834ad2e + da58909 commit 8491634
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/howto/pitfalls.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ contract C {
}
```

In this last snippet, the `internal` keyword could have been omitted (state variables are private by default) or alternatively have been replaced by `private`.
In this last snippet, the `internal` keyword could have been omitted (state variables are internal by default) or alternatively have been replaced by `private`.

## Protect access of view functions using reencryptions

Expand Down

0 comments on commit 8491634

Please sign in to comment.