From 3c46de03cef155d48d782d4be9c7bca7785bdc7e Mon Sep 17 00:00:00 2001 From: Daniel Leavitt Date: Tue, 14 May 2024 12:52:57 -0700 Subject: [PATCH] more spacing --- unit-one/lessons/4_functions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unit-one/lessons/4_functions.md b/unit-one/lessons/4_functions.md index 1c0b6e0..68a498c 100644 --- a/unit-one/lessons/4_functions.md +++ b/unit-one/lessons/4_functions.md @@ -8,7 +8,7 @@ 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(package)**: the function is accessible by functions inside the same module +- **public(package)**: the function is accessible by functions inside the same module ## Return Value