Skip to content

Commit

Permalink
correct break
Browse files Browse the repository at this point in the history
  • Loading branch information
theaddonn committed Jan 26, 2025
1 parent 29bdbf1 commit 34a91d1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/md/process.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ to _override_ the default behavior):
* `void update(Delta, void *);`

This is invoked once per tick until a process is explicitly aborted or ends
either with or without errors. Even though it is not mandatory to declare this
member function. As a rule of thumb, each process should at least define it to
work _properly_. The `void *` parameter is an opaque pointer to user data (if
any) forwarded directly to the process during an update.
either with or without errors. Technically speaking, this member function is
not strictly required. However, each process should at least define it to work
_properly_. The `void *` parameter is an opaque pointer to user data (if any)
forwarded directly to the process during an update.

* `void init();`

Expand Down

0 comments on commit 34a91d1

Please sign in to comment.