From ec7d49f33cb777ecb05d6e6481de41320b37df52 Mon Sep 17 00:00:00 2001 From: Angus Salkeld Date: Mon, 18 Nov 2013 11:14:16 +1100 Subject: [PATCH] Fix a typo in the types documentation Change-Id: Ib3a81c1c1145a31431cacde1cbabdf4a08300068 --- doc/types.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/types.rst b/doc/types.rst index fc66f03..7d6a291 100644 --- a/doc/types.rst +++ b/doc/types.rst @@ -152,7 +152,7 @@ Example :: Gender = wsme.types.Enum(str, 'male', 'female') - Title = Ewsme.types.num(str, 'M', 'Mrs') + Title = wsme.types.Enum(str, 'M', 'Mrs') class Person(wsme.types.Base): lastname = wsme.types.wsattr(unicode, mandatory=True)