From 799a3057cd96670ec0bb4290549acc3721391dbe Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Sun, 31 Oct 2010 23:32:38 +0000 Subject: Fixed a typo in the class based views docs, thanks to lasko for the report. git-svn-id: http://code.djangoproject.com/svn/django/trunk@14409 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/topics/class-based-views.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs') diff --git a/docs/topics/class-based-views.txt b/docs/topics/class-based-views.txt index 821ded63db..f0e4910c51 100644 --- a/docs/topics/class-based-views.txt +++ b/docs/topics/class-based-views.txt @@ -443,7 +443,7 @@ object, so we simply override it and wrap the call:: def get_object(self): # Call the superclass object = super(AuthorDetailView, self).get_object() - # Record the lass accessed date + # Record the last accessed date object.last_accessed = datetime.datetime.now() object.save() # Return the object -- cgit v1.3