Browse Source

add parenthesis around the default value line

as asked in https://github.com/BabylonJS/Babylon.js/pull/5191#pullrequestreview-156798881
V!nc3r 7 years ago
parent
commit
1efbbf6cff
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/babylon.scene.ts

+ 1 - 1
src/babylon.scene.ts

@@ -696,7 +696,7 @@ module BABYLON {
         /**
         /**
         * Gets or sets the fog color to use
         * Gets or sets the fog color to use
         * @see http://doc.babylonjs.com/babylon101/environment#fog
         * @see http://doc.babylonjs.com/babylon101/environment#fog
-        * Default is Color3(0.2, 0.2, 0.3)
+        * (Default is Color3(0.2, 0.2, 0.3))
         */
         */
         public fogColor = new Color3(0.2, 0.2, 0.3);
         public fogColor = new Color3(0.2, 0.2, 0.3);
         /**
         /**