From 16fdce0cc8f41622e7a72e5e8a7ba11e8ffe287b Mon Sep 17 00:00:00 2001 From: Xiaoji Chen Date: Mon, 16 Nov 2020 16:05:30 -0800 Subject: [PATCH] Fix typo (#1416) --- modules/gltools/src/context/context.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/gltools/src/context/context.js b/modules/gltools/src/context/context.js index b0ada6ee71..d8c7a83b8f 100644 --- a/modules/gltools/src/context/context.js +++ b/modules/gltools/src/context/context.js @@ -38,7 +38,7 @@ const CONTEXT_DEFAULTS = { export function createGLContext(options = {}) { assert( isBrowser, - "createGLContext on available in the browser.\nCreate your own headless context or use 'createHeadlessContext' from @luma.gl/test-utils" + "createGLContext only available in the browser.\nCreate your own headless context or use 'createHeadlessContext' from @luma.gl/test-utils" ); options = Object.assign({}, CONTEXT_DEFAULTS, options);