Skip to content

Commit a7a6bd9

Browse files
committed
Fix descriptions
1 parent 74d191d commit a7a6bd9

File tree

12 files changed

+3532
-8
lines changed

12 files changed

+3532
-8
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* Transform glsl to js.
33
*
4-
* @module glsl-js
4+
* @module glsl-transpiler
55
*/
66

77
import GLSL from './lib/index.cjs';

lib/descriptor.cjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* Descriptor of a node.
44
*
5-
* @module glsl-js/lib/descriptor
5+
* @module glsl-transpiler/lib/descriptor
66
*/
77
var types = require('./types.cjs');
88
var pick = require('pick-by-alias');

lib/index.cjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* glsl-parser often creates identifiers/other nodes by inheriting them from definition.
77
* So by writing som additional info into nodes, note that it will be accessible everywhere below, where initial id is referred by.
88
*
9-
* @module glsl-js/lib/index
9+
* @module glsl-transpiler/lib/index
1010
*/
1111

1212
var Emitter = require('events')

0 commit comments

Comments
 (0)