Skip to content

Commit f95b978

Browse files
authored
Fix typo in 4.0.md (#950)
1 parent cbdf950 commit f95b978

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/migration-guide/4.0.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,15 +54,15 @@ Tasks are `SYSTEM` or `VALIDATE` workflows that are run in the context of a syst
5454
Example on how to update the `target` and `is_task` for all workflows that start with `validate_`:
5555

5656
```sql
57-
UPDATE workflow
57+
UPDATE workflows
5858
SET target = 'VALIDATE', is_task = TRUE
5959
WHERE name LIKE 'validate_%';
6060
```
6161

6262
Example on how to update the `target` and `is_task` for all workflows that are `SYSTEM` or `VALIDATE`:
6363

6464
```sql
65-
UPDATE workflow
65+
UPDATE workflows
6666
SET is_task = TRUE
6767
WHERE target IN ('SYSTEM', 'VALIDATE');
6868
```

0 commit comments

Comments
 (0)