Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
xhliu committed Sep 24, 2020
1 parent 2e56fde commit 15778b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/functions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ is functionally equivalent to
static function and property
----------------------------
A static function/property can be referenced with contract name without an instantiated contract, similar to a static function/property in Javascript or C+.
A static function/property can be referenced with contract name without an instantiated contract, similar to a static function/property in Javascript or C++.

.. code-block:: solidity
Expand All @@ -55,7 +55,7 @@ A static function/property can be referenced with contract name without an insta
contract Bar {
public function unlock(int y) {
require(y == Foo.sum(1, 2));
require(y == Foo.double(2));
}
}
Expand Down

0 comments on commit 15778b7

Please sign in to comment.