diff options
author | Michael Riss <Michael.Riss@gmx.de> | 2013-01-16 22:52:32 +0100 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-01-16 17:44:53 -0800 |
commit | 1aea00366519a6e3bdb8338dd65c27ba0eeb1d7a (patch) | |
tree | 33c205685a74ff815cb8110bdfbb49ec54560af9 | |
parent | 207695fec254d4c98ef7af79c2a45ec6e9a1fae7 (diff) |
- remove erroneous, trailing comma at the end of the previously added gluOrtho2D function
- fix my AUTHORS name
Signed-off-by: Michael Riss <Michael.Riss@gmx.de>
-rw-r--r-- | AUTHORS | 2 | ||||
-rw-r--r-- | src/library_gl.js | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -44,4 +44,4 @@ a license to everyone to use it as detailed in LICENSE.) * Dominic Wong <dom@slowbunyip.org> * Alan Kligman <alan.kligman@gmail.com> (copyright owned by Mozilla Foundation) * Anthony Liot <wolfviking0@yahoo.com> -* Michael Riß <Michael.Riss@gmx.de> +* Michael Riss <Michael.Riss@gmx.de> diff --git a/src/library_gl.js b/src/library_gl.js index f6793dc9..2a6ec92f 100644 --- a/src/library_gl.js +++ b/src/library_gl.js @@ -2466,7 +2466,7 @@ var LibraryGL = { gluOrtho2D: function(left, right, bottom, top) { _glOrtho(left, right, bottom, top, -1, 1); - }, + } }; // Simple pass-through functions. Starred ones have return values. [X] ones have X in the C name but not in the JS name |