From 54569eb13952cd3b6de7c9a27ab3b9ea530e9fbe Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Wed, 16 Dec 2020 18:30:04 +1100 Subject: [PATCH] docs: fix simple typo, paramter -> parameter There is a small typo in freeglut/freeglut_main.c. Should read `parameter` rather than `paramter`. --- freeglut/freeglut_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/freeglut/freeglut_main.c b/freeglut/freeglut_main.c index 47043a0..99ad1be 100644 --- a/freeglut/freeglut_main.c +++ b/freeglut/freeglut_main.c @@ -1582,7 +1582,7 @@ LRESULT CALLBACK fgWindowProc( HWND hWnd, UINT uMsg, WPARAM wParam, switch( uMsg ) { case WM_CREATE: - /* The window structure is passed as the creation structure paramter... */ + /* The window structure is passed as the creation structure parameter... */ window = (SFG_Window *) (((LPCREATESTRUCT) lParam)->lpCreateParams); FREEGLUT_INTERNAL_ERROR_EXIT ( ( window != NULL ), "Cannot create window", "fgWindowProc" );