Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Doc typos #1

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
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/controllers.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ If the `Client` table is omitted from the service, the service will be interpret

## KnitInit and KnitStart

The `KnitInit` and `KnitStart` methods are optional lifecycle methods that can be added to any controller. For more info, check out the [service version](services.md#knitinit-and-knitstart) of this section (which has the same behavior) and the [execution model](executionmodel.md).
The `KnitInit` and `KnitStart` methods are optional lifecycle methods that can be added to any controller. For more info, check out [Services: KnitInit and KnitStart](services.md#knitinit-and-knitstart) (which has the same behavior) and the [execution model](executionmodel.md).

These methods can be added just like any other method:

Expand Down
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)

### Signals (Server-to-Client)

We should also create a signal that we can fire events for the clients when their points change. We can use `Knit:CreateSignal()` to indicate we want a signal created for the service.
We should also create a signal that we can fire events for the clients when their points change. We can use `Knit.CreateSignal()` to indicate we want a signal created for the service.

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