Skip to content

Commit

Permalink
Update 06 - mongodb.md
Browse files Browse the repository at this point in the history
  • Loading branch information
duarten committed Feb 12, 2013
1 parent c1e9158 commit 37a9e77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 06 - mongodb.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ Here you go:
title: titlePrefix[rand(titlePrefix.length)] + ' ' + titleSuffix[rand(titleSuffix.length)],
content: 'Yadda, yadda, yadda',
date: tap(new Date())(function(d) { d.setDate(d.getDate() + rand(maxDocuments)); }),
upvotes: rand(upvoteDelta) * tossCoin() ? 1 : -1,
upvotes: rand(upvoteDelta) * (tossCoin() ? 1 : -1),
tags: (function() {
var n = rand(tags.length),
ts = tags.length;
Expand Down

0 comments on commit 37a9e77

Please sign in to comment.