From 34a91d1b5be55e24f27d454daac7827b490fe95a Mon Sep 17 00:00:00 2001 From: theaddon Date: Sun, 26 Jan 2025 21:52:37 +0100 Subject: [PATCH] correct break --- docs/md/process.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/md/process.md b/docs/md/process.md index 29f037515..be02f917b 100644 --- a/docs/md/process.md +++ b/docs/md/process.md @@ -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();`