From bb397dfddcc1f0e2bec43ce7e521cff858aa2208 Mon Sep 17 00:00:00 2001 From: Reedip Date: Thu, 25 Aug 2016 09:49:23 +0530 Subject: [PATCH] Trivial DevRef Spelling corrections Small nits fixed. TrivialFix Change-Id: I144cada955783e9102e83e03961df2eabea25c7a --- doc/source/devref/api_validators.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/source/devref/api_validators.rst b/doc/source/devref/api_validators.rst index cf87d2f30..7f725e734 100644 --- a/doc/source/devref/api_validators.rst +++ b/doc/source/devref/api_validators.rst @@ -59,7 +59,7 @@ dictionary would look like the following: Using Validators ---------------- -In client code, the valdiator can be used in a REST API by using the +In client code, the validator can be used in a REST API by using the dictionary key for the validator. For example: :: @@ -90,7 +90,7 @@ could have a validator defined as follows: 'validate': {'type:values': [4, 6]}, 'is_visible': True}, -Here, the valdiate_values() method will take the list of values as the +Here, the validate_values() method will take the list of values as the allowable values that can be specified for this attribute. Test The Validator