Skip to content
This repository has been archived by the owner on Jul 31, 2024. It is now read-only.

Fixed inconsistent syntax than example in docs/services.md #238

Merged
merged 1 commit into from
Dec 24, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/services.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ end)

### Events (Server-to-Client)

We can use remote signals to fire events from the server to the clients. Continuing with the previous PointsService example, let's create a signal that fires when a client's points change. We can use `Knit:CreateSignal()` to indicate we want a signal created for the service.
We can use remote signals to fire events from the server to the clients. Continuing with the previous PointsService example, let's create a signal that fires when a client's points change. We can use `Knit.CreateSignal()` to indicate we want a signal created for the service.

```lua
local PointsService = Knit.CreateService {
Expand Down