From 7333303dc0b1e66c19c71b9c929c4a8808441fe0 Mon Sep 17 00:00:00 2001 From: Gael Pasgrimaud Date: Thu, 14 Apr 2011 15:11:26 +0200 Subject: [PATCH] typo --- docs/formalchemy.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/formalchemy.txt b/docs/formalchemy.txt index 7c2b6a7..73b796d 100644 --- a/docs/formalchemy.txt +++ b/docs/formalchemy.txt @@ -79,9 +79,9 @@ To edit multiple objects, bind them to a Grid instead:: Which results in: -Saving changes is similarly easy. (Here we're using Pylons-style request.params(); adjust for your framework of choice as necessary):: +Saving changes is similarly easy. (Here we're using Pylons-style request.params; adjust for your framework of choice as necessary):: - fs = FieldSet(order1, data=request.params()) + fs = FieldSet(order1, data=request.params) if fs.validate(): fs.sync() session.commit()