Skip to content

Commit

Permalink
No default visibility for functions
Browse files Browse the repository at this point in the history
  • Loading branch information
AmazingAng authored Jun 28, 2023
1 parent 82a97cc commit 587b253
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Languages/en/03_Function_en/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ It may seem complex, but let's break it down piece by piece (square brackets ind

3. `(<parameter types>)`: The input parameter types and names.

3. `[internal|external|public|private]`: Function visibility specifiers. There are 4 kinds of them `public` is the default visibility if left empty:
3. `[internal|external|public|private]`: Function visibility specifiers. There is no default visibility, so you must specify it for each function. There are 4 kinds of them:

- `public`: Visible to all.

Expand Down

0 comments on commit 587b253

Please sign in to comment.