From 8cbfd487a828d368e6848518cef0db8bfa33b0a2 Mon Sep 17 00:00:00 2001 From: venkatamahesh Date: Wed, 3 Feb 2016 15:21:50 +0530 Subject: [PATCH] Fix spellings for two words Change-Id: I0cd0a5fed4784cb08acc29dc0bddcbc205975e1e --- mistral/api/controllers/v2/workflow.py | 2 +- ...ging-isolation-level-to-read-committed-7080833ad284b901.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mistral/api/controllers/v2/workflow.py b/mistral/api/controllers/v2/workflow.py index f9a19e651..652d55657 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 a766d3d7b..ca87e93b4 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: - |