Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/gotchas.rst
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ don't need ``this`` (*this* is kinda bonus, no?)
the compiler does not copy to the derived contracts. Otherwise, from within a contract, ``private`` is the same as ``internal``.

[56] ``external`` is available only for functions. ``public``, ``internal`` and ``private`` are available for both functions
and state variables. The **contract's interface** is built from it's ``external`` and ``public`` memebers.
and state variables. The **contract's interface** is built from it's ``external`` and ``public`` members.

[57] The compiler will **automatically** generate an accessor ("get" function) for the ``public`` state variables.

Expand Down