beproudstandupcom / pyglet

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

Error in the documentation #140

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
The using OpenGL page:
http://www.pyglet.org/doc/programming_guide/using_opengl.html

Has two mistakes:
win = win.Window(visible=False)
should be
win = window.Window(visible=False)

and:
while not window.has_exit:
should be:
while not win.has_exit:

The error is in the PDF as well. 

Original issue reported on code.google.com by pdbo...@gmail.com on 20 Sep 2007 at 9:52

GoogleCodeExporter commented 8 years ago
Thanks, fixed in r1266.

Original comment by Alex.Hol...@gmail.com on 20 Sep 2007 at 10:56

GoogleCodeExporter commented 8 years ago
Thanks, fixed in r1266.

Original comment by Alex.Hol...@gmail.com on 20 Sep 2007 at 10:57