@@ -95,7 +95,7 @@ All DSL words are aliased so they can be used without namespace qualification:
9595| ` UDP ` | UDP socket events |
9696| ` TCP ` | TCP socket events |
9797| ` Network<T> ` | Networked data |
98- | ` Sync<T> ` | Synchronisation group |
98+ | ` Sync<T> ` | Synchronization group |
9999| ` Single ` | At most one task at a time |
100100| ` Buffer<N> ` | Allow up to N concurrent tasks |
101101| ` Pool<T> ` | Execute on a named thread pool |
@@ -125,15 +125,15 @@ static constexpr LogLevel FATAL = LogLevel::FATAL;
125125
126126Accessed via the nested ` Scope ` struct:
127127
128- | Scope | Description |
129- | ---------------------- | ------------------------------ |
130- | ` Scope::LOCAL<T> ` | Default; tasks via thread pool |
131- | ` Scope::INLINE<T> ` | Execute in the emitting thread |
132- | ` Scope::DELAY<T> ` | Delayed emission |
133- | ` Scope::INITIALIZE<T> ` | Available before startup |
134- | ` Scope::NETWORK<T> ` | Broadcast over network |
135- | ` Scope::UDP<T> ` | Emit via UDP |
136- | ` Scope::WATCHDOG<T> ` | Service a watchdog |
128+ | Scope | Description |
129+ | ------------------- | ------------------------------ |
130+ | ` Scope::LOCAL ` | Default; tasks via thread pool |
131+ | ` Scope::INLINE ` | Execute in the emitting thread |
132+ | ` Scope::DELAY ` | Delayed emission |
133+ | ` Scope::INITIALIZE ` | Available before startup |
134+ | ` Scope::NETWORK ` | Broadcast over network |
135+ | ` Scope::UDP ` | Emit via UDP |
136+ | ` Scope::WATCHDOG ` | Service a watchdog |
137137
138138## Example
139139
0 commit comments