Skip to content

Commit 9460289

Browse files
committed
Fix comment.
1 parent 2e8b805 commit 9460289

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/nodeMap.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,6 +201,7 @@ api.createNodeMap = (input, graphs, graph, issuer, name, list) => {
201201
{propertyIsArray: true, allowDuplicate: false});
202202
api.createNodeMap(o, graphs, graph, issuer, id);
203203
} else if(graphTypes.isValue(o)) {
204+
// handle @value
204205
util.addValue(
205206
subject, property, o,
206207
{propertyIsArray: true, allowDuplicate: false});
@@ -213,7 +214,7 @@ api.createNodeMap = (input, graphs, graph, issuer, name, list) => {
213214
subject, property, o,
214215
{propertyIsArray: true, allowDuplicate: false});
215216
} else {
216-
// handle @value
217+
// handle remaining cases
217218
api.createNodeMap(o, graphs, graph, issuer, name);
218219
util.addValue(
219220
subject, property, o, {propertyIsArray: true, allowDuplicate: false});

0 commit comments

Comments
 (0)