Skip to content

Commit 86f56fb

Browse files
authored
Merge pull request #15687 from Marcofann/fix/typos
Fix typographical errors
2 parents 35bd987 + 0191fd9 commit 86f56fb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/assembly.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ Local Solidity variables are available for assignments, for example:
209209
``assembly { signextend(<num_bytes_of_x_minus_one>, x) }``
210210

211211

212-
Since Solidity 0.6.0, the name of a inline assembly variable may not
212+
Since Solidity 0.6.0, the name of an inline assembly variable may not
213213
shadow any declaration visible in the scope of the inline assembly block
214214
(including variable, contract and function declarations).
215215

test/libsolidity/syntaxTests/bytecodeReferences/circular_reference_internal_function.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
contract C
22
{
3-
// Internal uncalled function should not cause an cyclic dep. error
3+
// Internal uncalled function should not cause a cyclic dep. error
44
function foo() internal { new D(); }
55
function callFoo() virtual public { foo(); }
66
}

0 commit comments

Comments
 (0)