1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

docs: fix typos using codespell (#17332)

This commit is contained in:
Ahmad Yasser
2023-02-16 14:43:39 +05:00
committed by GitHub
parent 580dbc3f0e
commit cad2cd5583
22 changed files with 48 additions and 48 deletions

View File

@ -12,7 +12,7 @@ On each `run()`, all the possible transitions from the current state are evaluat
The first transition for the current state, whose condition evaluates to true is
taken (the condition is specified by a transition callback function).
In a successfull transition, the current state changes to the new one.
In a successful transition, the current state changes to the new one.
When that happens:
* the client-specified `on_exit()` handler from the current state is called.
* the client-specified `on_entry()` handler of the new state is called.