Skip to content

Commit 4d564a6

Browse files
committed
Default to array not object
1 parent a79df01 commit 4d564a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bit-docs.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ var tags = require("./tags/tags");
44

55
var mergeOnto = function(prop, dest, source){
66
if(!dest[prop]) {
7-
dest[prop] = {};
7+
dest[prop] = [];
88
}
99
if(source[prop]) {
1010
dest[prop] = dest[prop].concat(source[prop]);

0 commit comments

Comments
 (0)