Skip to content

Commit

Permalink
update smtchecker and style-guide
Browse files Browse the repository at this point in the history
  • Loading branch information
minaminao committed Sep 20, 2023
1 parent 6daea7c commit 8267573
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions docs/smtchecker.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1212,12 +1212,12 @@ CHCエンジンは、内部関数の呼び出しをサポートするために
+===================================+======================================+
|``assert`` |Verification target. |
+-----------------------------------+--------------------------------------+
|``require`` |Assumption. |
|``require`` |仮定 |
+-----------------------------------+--------------------------------------+
|internal call |BMC: Inline function call. |
|internalコール |BMC: Inline function call. |
| |CHC: Function summaries. |
+-----------------------------------+--------------------------------------+
|external call to known code |BMC: Inline function call or |
|既知のコードへのexternalコール |BMC: Inline function call or |
| |erase knowledge about state variables |
| |and local storage references. |
| |CHC: Assume called code is unknown. |
Expand All @@ -1228,7 +1228,7 @@ CHCエンジンは、内部関数の呼び出しをサポートするために
| |Checks whether it is popping an |
| |empty array. |
+-----------------------------------+--------------------------------------+
|ABI functions |Abstracted with UF. |
|ABI関数 |Abstracted with UF. |
+-----------------------------------+--------------------------------------+
|``addmod``, ``mulmod`` |Supported precisely. |
+-----------------------------------+--------------------------------------+
Expand Down
6 changes: 3 additions & 3 deletions docs/style-guide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1433,14 +1433,14 @@ mixedCaseを使用してください。

.. Underscore Prefix for Non-external Functions and Variables
非外部関数および変数のためのアンダースコア接頭辞
================================================
非外部関数と非外部変数のためのアンダースコア接頭辞
==================================================

* ``_singleLeadingUnderscore``

.. This convention is suggested for non-external functions and state variables (``private`` or ``internal``). State variables without a specified visibility are ``internal`` by default.
この規約は、外部関数と状態変数( ``private`` または ``internal`` )以外では推奨されています
この規約は、非外部関数と非外部状態変数(つまり ``private`` または ``internal`` )で推奨されています
ビジビリティの指定がない状態変数は、デフォルトで ``internal`` となります。

.. When designing a smart contract, the public-facing API (functions that can be called by any account) is an important consideration.
Expand Down

0 comments on commit 8267573

Please sign in to comment.