From 433039f105448c671e35c4670c79a37ccfd864bc Mon Sep 17 00:00:00 2001 From: James Ray Date: Fri, 30 Jun 2017 19:47:35 +1000 Subject: Ref to getter function --- docs/miscellaneous.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/miscellaneous.rst') diff --git a/docs/miscellaneous.rst b/docs/miscellaneous.rst index 182de33a..1b467b5c 100644 --- a/docs/miscellaneous.rst +++ b/docs/miscellaneous.rst @@ -491,7 +491,7 @@ Function Visibility Specifiers return true; } -- ``public``: visible externally and internally (creates getter function for storage/state variables) +- ``public``: visible externally and internally (creates a :ref:`getter function ` for storage/state variables) - ``private``: only visible in the current contract - ``external``: only visible externally (only for functions) - i.e. can only be message-called (via ``this.func``) - ``internal``: only visible internally -- cgit From 221a013042ea3133aca743ba127526185df71268 Mon Sep 17 00:00:00 2001 From: James Ray Date: Fri, 7 Jul 2017 12:07:25 +1000 Subject: Fixed reference to getter function --- docs/miscellaneous.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/miscellaneous.rst') diff --git a/docs/miscellaneous.rst b/docs/miscellaneous.rst index 1b467b5c..812045a2 100644 --- a/docs/miscellaneous.rst +++ b/docs/miscellaneous.rst @@ -491,7 +491,7 @@ Function Visibility Specifiers return true; } -- ``public``: visible externally and internally (creates a :ref:`getter function ` for storage/state variables) +- ``public``: visible externally and internally (creates a :ref:`getter function <_getter_functions>` for storage/state variables) - ``private``: only visible in the current contract - ``external``: only visible externally (only for functions) - i.e. can only be message-called (via ``this.func``) - ``internal``: only visible internally -- cgit From 89551d9968493e1b392c70cf514c84415735d50e Mon Sep 17 00:00:00 2001 From: James Ray Date: Fri, 28 Jul 2017 11:34:22 +1000 Subject: Updated reference to getter-functions --- docs/miscellaneous.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/miscellaneous.rst') diff --git a/docs/miscellaneous.rst b/docs/miscellaneous.rst index 812045a2..8b88f00c 100644 --- a/docs/miscellaneous.rst +++ b/docs/miscellaneous.rst @@ -491,7 +491,7 @@ Function Visibility Specifiers return true; } -- ``public``: visible externally and internally (creates a :ref:`getter function <_getter_functions>` for storage/state variables) +- ``public``: visible externally and internally (creates a :ref:`getter function ` for storage/state variables) - ``private``: only visible in the current contract - ``external``: only visible externally (only for functions) - i.e. can only be message-called (via ``this.func``) - ``internal``: only visible internally -- cgit From c03a85aa7b9a88eb9049897d342a3b125b86b7cf Mon Sep 17 00:00:00 2001 From: James Ray Date: Fri, 28 Jul 2017 11:50:20 +1000 Subject: ref getter-functions --- docs/miscellaneous.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/miscellaneous.rst') diff --git a/docs/miscellaneous.rst b/docs/miscellaneous.rst index 8b88f00c..493e701b 100644 --- a/docs/miscellaneous.rst +++ b/docs/miscellaneous.rst @@ -491,7 +491,7 @@ Function Visibility Specifiers return true; } -- ``public``: visible externally and internally (creates a :ref:`getter function ` for storage/state variables) +- ``public``: visible externally and internally (creates a :ref:`getter-functions` for storage/state variables) - ``private``: only visible in the current contract - ``external``: only visible externally (only for functions) - i.e. can only be message-called (via ``this.func``) - ``internal``: only visible internally -- cgit From 0da46f259f357c09303363147bb8b2cc738843f6 Mon Sep 17 00:00:00 2001 From: James Ray Date: Mon, 31 Jul 2017 20:35:29 +1000 Subject: :ref:`getter function` --- docs/miscellaneous.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/miscellaneous.rst') diff --git a/docs/miscellaneous.rst b/docs/miscellaneous.rst index 493e701b..6e5c1c9e 100644 --- a/docs/miscellaneous.rst +++ b/docs/miscellaneous.rst @@ -491,7 +491,7 @@ Function Visibility Specifiers return true; } -- ``public``: visible externally and internally (creates a :ref:`getter-functions` for storage/state variables) +- ``public``: visible externally and internally (creates a :ref:`getter function` for storage/state variables) - ``private``: only visible in the current contract - ``external``: only visible externally (only for functions) - i.e. can only be message-called (via ``this.func``) - ``internal``: only visible internally -- cgit