Ticket #10501: models-instances-typo.diff

File models-instances-typo.diff, 523 bytes (added by Tim Graham, 15 years ago)

fixed typo (removed "to")

  • docs/ref/models/instances.txt

     
    2222
    2323.. class:: Model(**kwargs)
    2424
    25 The keyword arguments to are simply the names of the fields you've defined on
     25The keyword arguments are simply the names of the fields you've defined on
    2626your model. Note that instantiating a model in no way touches your database; for
    2727that, you need to ``save()``.
Back to Top