Skip to content

Commit

Permalink
fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Uncontained0 committed Jun 12, 2023
1 parent decd386 commit 0a871c9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/guide/namespaces/listening-events.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ An event can only have a single listener. Multiple calls to `On` will overwrite

## Listening to Function-Like Events

Function-like events are events that are called, and the listener returns values back to the caller. They are also listened to by using the `On` method. The difference in what makes a function-like event is how it's called (Covered [here](./sending-invoking-events)).
Function-like events are events that are called, and the listener returns values back to the caller. They are also listened to by using the `On` method. The difference in what makes a function-like event is how it's called (Covered [here](./sending-calling-events)).

::: code-group

Expand Down
2 changes: 1 addition & 1 deletion docs/guide/namespaces/what-is-namespace.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Do not dynamically create namespaces. Namespace objects are never GC'd, dynamica

## Namespaces & Events

Events are not their own object, they can only be interacted with through namespaces. As an example, let's fire an event to the server from the client. You'll learn more about firing events in the [Sending and Invoking Events](./sending-invoking-events) section.
Events are not their own object, they can only be interacted with through namespaces. As an example, let's fire an event to the server from the client. You'll learn more about firing events in the [Sending and Calling Events](./sending-calling-events) section.

```lua
local Net = Red.Client("NamespaceName")
Expand Down

0 comments on commit 0a871c9

Please sign in to comment.