Replace non-breaking space (U+00A0) with regular space (U+0020)

This commit is contained in:
Tim Schaub
2015-04-22 10:41:10 -06:00
parent 046ff764df
commit c31ae25892
12 changed files with 15 additions and 15 deletions

View File

@@ -215,7 +215,7 @@ ol.webgl.Context.prototype.getHitDetectionFramebuffer = function() {
/**
* Get shader from the cache if it's in the cache. Otherwise, create
* the WebGL shader, compile it, and add entry to cache.
* the WebGL shader, compile it, and add entry to cache.
* @param {ol.webgl.Shader} shaderObject Shader object.
* @return {WebGLShader} Shader.
*/
@@ -246,7 +246,7 @@ ol.webgl.Context.prototype.getShader = function(shaderObject) {
/**
* Get the program from the cache if it's in the cache. Otherwise create
* the WebGL program, attach the shaders to it, and add an entry to the
* the WebGL program, attach the shaders to it, and add an entry to the
* cache.
* @param {ol.webgl.shader.Fragment} fragmentShaderObject Fragment shader.
* @param {ol.webgl.shader.Vertex} vertexShaderObject Vertex shader.