Fix typos
The Fix typos robot for Bitrix24 (Alaio) business processes checks the text you pass in against a Russian and English spelling service and replaces each detected mistake with the top suggestion. It returns the corrected text plus a Was corrected flag so the process can branch on whether anything changed.
Fix typos is a text robot for Bitrix24 (Alaio) business processes and robots. It sends the supplied text to a spell-checking service that understands Russian and English, finds misspelled words, and applies the first suggested correction to each one. The robot returns two values: the corrected text and a boolean Was corrected flag that is true only when at least one change was made. Use it to tidy customer names, comments, order descriptions, or any user-entered field before it is saved to CRM, shown to a client, or sent in an email. The Was corrected flag lets you add a condition — for example, notify a manager only when the original text contained errors. Add it in the workflow designer next to the standard activities; no code and no developer are needed.
What input parameters does the robot accept?
| Parameter | Type | Required? | Default |
|---|---|---|---|
| Text | string | yes |
What does the robot return?
| Parameter | Type |
|---|---|
| Corrected text | string |
| Was corrected | bool |
Scenario: clean up a comment typed quickly by an operator.
- Step 1. Add the Fix typos robot to your business process.
- Step 2. Set Text to the field to check, e.g. {=Document:COMMENTS}.
- Step 3. Save the Corrected text result back into the field or a variable.
- Step 4. Use the Was corrected flag in a condition to react only when something changed.