Commit 2f79d0b4a468461d9d2479219ba3625299414049
1 parent
1b09741c
Exists in
master
and in
22 other branches
ActionItem85: minor doc fix
git-svn-id: https://svn.colivre.coop.br/svn/noosfero/trunk@675 3f533792-8f58-4932-b0fe-aaf55b0a4547
Showing
1 changed file
with
3 additions
and
2 deletions
Show diff stats
app/models/task.rb
... | ... | @@ -6,8 +6,9 @@ |
6 | 6 | # the actual action associated to the type of task can be performed. See the |
7 | 7 | # documentation of the #perform method for details. |
8 | 8 | # |
9 | -# This class has a +status+ field of type <tt>text</tt>, where you can store | |
10 | -# any type of data (as serialized Ruby objects) you need for your subclass . | |
9 | +# This class has a +data+ field of type <tt>text</tt>, where you can store any | |
10 | +# type of data (as serialized Ruby objects) you need for your subclass (which | |
11 | +# will need to declare <ttserialize</tt> itself). | |
11 | 12 | class Task < ActiveRecord::Base |
12 | 13 | |
13 | 14 | module Status | ... | ... |