Skip to content

Commit

Permalink
Add space before division operator
Browse files Browse the repository at this point in the history
  • Loading branch information
rnowling committed Sep 23, 2014
1 parent 79978fc commit 9013447
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ private object IDF {
* we just omit changing those entries.
*/
if(df(j) >= minDocFreq) {
inv(j) = math.log((m + 1.0)/ (df(j) + 1.0))
inv(j) = math.log((m + 1.0) / (df(j) + 1.0))
}
j += 1
}
Expand Down

0 comments on commit 9013447

Please sign in to comment.