Skip to content

Commit 72b9970

Browse files
committed
docs: Fix showing the util namespace
1 parent d7faab3 commit 72b9970

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

src/util/common.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -998,7 +998,7 @@ var util = {
998998
* @param {object} target target object to modify.
999999
* @param {object} sources object(s) to merge into the target.
10001000
* @returns {object} The merged object.
1001-
* @member geo.util
1001+
* @memberof geo.util
10021002
*/
10031003
deepMerge: function (target, ...sources) {
10041004
for (const source of sources) {

src/util/mesh.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
* elements, falsy for vertices.
3434
* @returns {geo.meshFeature.meshColoredInfo} An object with the colored mesh
3535
* information.
36+
* @memberof geo.util
3637
*/
3738
function createColoredMesh(feature, elementValues) {
3839
var util = require('../util');

src/webgl/lookupTable2D.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ var vgl = require('../vgl');
88
* @param {vgl.renderState} renderState An object that contains the context
99
* used for drawing.
1010
* @param {number} textureUnit The number of the texture unit [0-15].
11+
* @private
1112
*/
1213
function activateTextureUnit(renderState, textureUnit) {
1314
if (textureUnit >= 0 && textureUnit <= 31) {

0 commit comments

Comments
 (0)