From e9676fc406953bb9b6cee5d0c9d648b2e64b59c0 Mon Sep 17 00:00:00 2001 From: Rcmaniac25 Date: Sun, 4 Jun 2017 15:39:13 -0400 Subject: [PATCH] Corrected phrasing in docs and unneeded \ in code --- freeglut/freeglut/src/fg_internal.h | 2 +- freeglut/web-src/docs/api.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/freeglut/freeglut/src/fg_internal.h b/freeglut/freeglut/src/fg_internal.h index d57c2d7..dafe234 100644 --- a/freeglut/freeglut/src/fg_internal.h +++ b/freeglut/freeglut/src/fg_internal.h @@ -291,7 +291,7 @@ typedef void (* FGCBAppStatus )( int ); typedef void (* FGCBAppStatusUC )( int, FGCBUserData ); /* The global callbacks type definitions */ -typedef void (* FGCBIdle )( void ); \ +typedef void (* FGCBIdle )( void ); typedef void (* FGCBIdleUC )( FGCBUserData ); typedef void (* FGCBTimer )( int ); typedef void (* FGCBTimerUC )( int, FGCBUserData ); diff --git a/freeglut/web-src/docs/api.php b/freeglut/web-src/docs/api.php index 47fbaf1..bc28798 100644 --- a/freeglut/web-src/docs/api.php +++ b/freeglut/web-src/docs/api.php @@ -332,7 +332,7 @@ when you created it.

GLUT was created as a tool to help teach OpenGL programming. To simplify development, callbacks were used for handling display, input, and other -events. But the time it was developed, the purpose, or for some other +events. But at the time it was developed, the purpose, or for some other unknown reason, the callbacks lacked any user-provided data argument. This has caused considerable difficulties for any significantly advanced usage of GLUT, and now freeglut. This has prevented any attempt to