浏览代码

Merge pull request #1138 from 501st-alpha1/fix-typo

Fix typo in Engine.runRenderLoop docs
David Catuhe 9 年之前
父节点
当前提交
f7770c159d
共有 2 个文件被更改,包括 2 次插入2 次删除
  1. 1 1
      src/babylon.engine.js
  2. 1 1
      src/babylon.engine.ts

+ 1 - 1
src/babylon.engine.js

@@ -543,7 +543,7 @@ var BABYLON;
         };
         /**
          * Register and execute a render loop. The engine can have more than one render function.
-         * @param {Function} renderFunction - the function to continuesly execute starting the next render loop.
+         * @param {Function} renderFunction - the function to continuously execute starting the next render loop.
          * @example
          * engine.runRenderLoop(function () {
          *      scene.render()

+ 1 - 1
src/babylon.engine.ts

@@ -666,7 +666,7 @@
 
         /**
          * Register and execute a render loop. The engine can have more than one render function.
-         * @param {Function} renderFunction - the function to continuesly execute starting the next render loop.
+         * @param {Function} renderFunction - the function to continuously execute starting the next render loop.
          * @example
          * engine.runRenderLoop(function () {
          *      scene.render()