Skip to content

Commit

Permalink
reverted change on package visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
dantheman8300 committed May 14, 2024
1 parent dd4a1cb commit 1f1fe20
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion unit-one/lessons/4_functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ Sui Move functions have three types of visibility:

- **private**: the default visibility of a function; it can only be accessed by functions inside the same module
- **public**: the function is accessible by functions inside the same module and by functions defined in another module
- **public(friend)**: the function is accessible by functions inside the same module and by functions defined in modules that are explicitly specified in the friend list.
- **public(package)**: the function is accessible by functions inside the same module
-

## Return Value

Expand Down

0 comments on commit 1f1fe20

Please sign in to comment.