Skip to content

Commit 280e906

Browse files
committed
docs
1 parent eddd9d7 commit 280e906

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/pages/world/reference/world.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ Initializes the World by installing the core module.
6262
_Only the initial creator can initialize. This can be done only once._
6363

6464
```solidity
65-
function initialize(IModule initModule) public prohibitDirectCallback;
65+
function initialize(IModule initModule) public virtual prohibitDirectCallback;
6666
```
6767

6868
**Parameters**
@@ -78,7 +78,7 @@ Installs a given root module in the World.
7878
_The caller must own the root namespace._
7979

8080
```solidity
81-
function installRootModule(IModule module, bytes memory encodedArgs) public prohibitDirectCallback;
81+
function installRootModule(IModule module, bytes memory encodedArgs) public virtual prohibitDirectCallback;
8282
```
8383

8484
**Parameters**
@@ -384,15 +384,15 @@ DYNAMIC FUNCTION SELECTORS
384384
Accepts ETH and adds to the root namespace's balance.
385385

386386
```solidity
387-
receive() external payable;
387+
receive() external payable virtual;
388388
```
389389

390390
#### fallback
391391

392392
_Fallback function to call registered function selectors._
393393

394394
```solidity
395-
fallback() external payable prohibitDirectCallback;
395+
fallback() external payable virtual prohibitDirectCallback;
396396
```
397397

398398
## WorldFactory

0 commit comments

Comments
 (0)