mirror of
https://github.com/slint-ui/slint.git
synced 2025-08-04 18:58:36 +00:00
doc: Fix rendering of generated docs for restart()
The `--` was converted into a HTML entity, which was escaped again and shown raw.
This commit is contained in:
parent
8aa377fe87
commit
fa8959c7bc
1 changed files with 1 additions and 1 deletions
|
@ -500,7 +500,7 @@ struct Timer
|
|||
new F(std::move(callback)), [](void *data) { delete reinterpret_cast<F *>(data); });
|
||||
}
|
||||
/// Stops the previously started timer. Does nothing if the timer has never been started. A
|
||||
/// stopped timer cannot be restarted with restart() -- instead you need to call start().
|
||||
/// stopped timer cannot be restarted with restart(). Use start() instead.
|
||||
void stop() { cbindgen_private::slint_timer_stop(id); }
|
||||
/// Restarts the timer. If the timer was previously started by calling [`Self::start()`]
|
||||
/// with a duration and callback, then the time when the callback will be next invoked
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue