fix typos in docstrings

This commit is contained in:
Dane Springmeyer 2009-09-25 04:21:14 +00:00
parent c1bebb79e4
commit a50bfa3811

View file

@ -77,12 +77,12 @@ void export_color ()
.add_property("b",
&color::blue,
&color::set_blue,
"Gets or sets the green component.\n"
"Gets or sets the blue component.\n"
"The value is between 0 and 255.\n")
.add_property("a",
&color::alpha,
&color::set_alpha,
"Gets or sets the green component.\n"
"Gets or sets the alpha component.\n"
"The value is between 0 and 255.\n")
.def(self == self)
.def_pickle(color_pickle_suite())