diff --git a/src/render/Render.js b/src/render/Render.js index e90301b3..73ddd51c 100644 --- a/src/render/Render.js +++ b/src/render/Render.js @@ -17,7 +17,7 @@ var Render = {}; /** * Creates a new renderer. The options parameter is an object that specifies any properties you wish to override the defaults. * All properties have default values, and many are pre-calculated automatically based on other properties. - * See the properites section below for detailed information on what you can pass via the `options` object. + * See the properties section below for detailed information on what you can pass via the `options` object. * @method create * @param {object} [options] * @return {render} A new renderer @@ -88,7 +88,7 @@ var Render = {}; * @param {render} render */ Render.clear = function(render) { - // nothing required to clear this renderer implentation + // nothing required to clear this renderer implementation // if a scene graph is required, clear it here (see RenderPixi.js) };