diff --git a/mistral/api/controllers/v2/workflow.py b/mistral/api/controllers/v2/workflow.py index f9a19e65..652d5565 100644 --- a/mistral/api/controllers/v2/workflow.py +++ b/mistral/api/controllers/v2/workflow.py @@ -210,7 +210,7 @@ class WorkflowsController(rest.RestController, hooks.HookController): :param marker: Optional. Pagination marker for large data sets. :param limit: Optional. Maximum number of resources to return in a single result. Default value is None for backward - compatability. + compatibility. :param sort_keys: Optional. Columns to sort results by. Default: created_at. :param sort_dirs: Optional. Directions to sort corresponding to diff --git a/releasenotes/notes/changing-isolation-level-to-read-committed-7080833ad284b901.yaml b/releasenotes/notes/changing-isolation-level-to-read-committed-7080833ad284b901.yaml index a766d3d7..ca87e93b 100644 --- a/releasenotes/notes/changing-isolation-level-to-read-committed-7080833ad284b901.yaml +++ b/releasenotes/notes/changing-isolation-level-to-read-committed-7080833ad284b901.yaml @@ -34,7 +34,7 @@ fixes: REPEATABLE_READ to READ_COMMITTED so process A can see changes committed in other transactions even if process A is in the middle of a transaction. - A short explaination regarding the different isolation levels: + A short explanation regarding the different isolation levels: - |