From 0217f47979b51dd01b14a6b961686de83126927c Mon Sep 17 00:00:00 2001 From: Dao Cong Tien Date: Thu, 29 Sep 2016 11:38:42 +0700 Subject: [PATCH] Fix typo in devref/api_conditional_updates.rst Change-Id: I0cac2688e7fa764ddf353583113faca8aa2deb46 --- doc/source/devref/api_conditional_updates.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/source/devref/api_conditional_updates.rst b/doc/source/devref/api_conditional_updates.rst index 3c62ec5d480..40197077305 100644 --- a/doc/source/devref/api_conditional_updates.rst +++ b/doc/source/devref/api_conditional_updates.rst @@ -58,7 +58,7 @@ updating the DB. In essence it is the SQL equivalent of an ``UPDATE ... FROM It is implemented as an abstraction layer on top of SQLAlchemy ORM engine in our DB api layer and exposed for consumption in Cinder's Persistent Versioned Objects through the ``conditional_update`` method so it can be used from any -Vesioned Object instance that has persistence (Volume, Snapshot, Backup...). +Versioned Object instance that has persistence (Volume, Snapshot, Backup...). Method signature is: @@ -166,7 +166,7 @@ Basic Usage queries/conditions and as the rest of the DB methods must be properly abstracted from the API. - Therefore we will create the medhot in cinder/db/sqlalchemy/api.py: + Therefore we will create the method in cinder/db/sqlalchemy/api.py: .. code:: python