summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmmanuele Bassi <ebassi@gmail.com>2018-03-12 12:18:25 +0000
committerGitHub <noreply@github.com>2018-03-12 12:18:25 +0000
commit2189bc0d9ba81c31281c160b05930bac7faacde4 (patch)
tree697b48acaf3836a009d6d5c8f34691d4fda87c26
parent6769ba25bc2c5db15ef1485133df8ae6999a78b3 (diff)
parentd60b923d468f77bc504675d563cdbf14a9a29469 (diff)
downloadlibepoxy-2189bc0d9ba81c31281c160b05930bac7faacde4.tar.gz
Merge pull request #159 from luzpaz/misc-typos
Trival misc. typo fixes
-rw-r--r--configure.ac2
-rw-r--r--meson.build2
-rw-r--r--src/dispatch_common.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index 1af6445..a419efb 100644
--- a/configure.ac
+++ b/configure.ac
@@ -124,7 +124,7 @@ AS_CASE([$host_os],
build_wgl=yes
has_znow=yes
# On windows, the DLL has to have all of its functions
- # resolved at link time, so we have to link directly aginst
+ # resolved at link time, so we have to link directly against
# opengl32.dll. But that's the only GL provider, anyway.
EPOXY_LINK_LIBS="-lopengl32"
diff --git a/meson.build b/meson.build
index ceac94f..a1cec5b 100644
--- a/meson.build
+++ b/meson.build
@@ -205,7 +205,7 @@ if not gles1_dep.found()
endif
# On windows, the DLL has to have all of its functions
-# resolved at link time, so we have to link directly aginst
+# resolved at link time, so we have to link directly against
# opengl32. But that's the only GL provider, anyway.
if host_system == 'windows'
opengl32_dep = cc.find_library('opengl32', required: true)
diff --git a/src/dispatch_common.c b/src/dispatch_common.c
index 72cda4c..bc2fb94 100644
--- a/src/dispatch_common.c
+++ b/src/dispatch_common.c
@@ -487,7 +487,7 @@ epoxy_glsl_version(void)
* is supported by the client, this probably isn't the function you want.
*
* Some parts of the spec for OpenGL and friends will return an OpenGL formatted
- * extension string that is seperate from the usual extension strings for the
+ * extension string that is separate from the usual extension strings for the
* spec. This function provides easy parsing of those strings.
*
* @see epoxy_has_gl_extension()