kapilt / getpaid

Automatically exported from code.google.com/p/getpaid
0 stars 0 forks source link

Typo at "make-content-types-buyable.txt" #251

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
PloneGetPaid-0.7.5-py2.4.egg/Products/PloneGetPaid/docs/development/make-content
-types-buyable.txt

class MyBuyable(BaseContent):
   implements(IBuyableMarker)
registerType(MyBuyable)

class MyDonatable(BaseContent):
   implements(IBuyableMarker) # Should be implements(IDonatableMarker)
registerType(MyDonatable)

class MyShippable(BaseContent):
   implements(IBuyableMarker) # Should be implements(IShippableMarker)
registerType(MyShippable)

Original issue reported on code.google.com by taito.ho...@gmail.com on 12 Apr 2009 at 9:57

GoogleCodeExporter commented 8 years ago
Similar typo found at "test_functional_addressbook_save.txt" line 95.

Original comment by taito.ho...@gmail.com on 13 Apr 2009 at 5:47