Skip to content

Commit

Permalink
Style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
falaki committed Oct 6, 2016
1 parent 8691569 commit 8e065c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/pkg/R/context.R
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ parallelize <- function(sc, coll, numSlices = 1) {

writeToTempFile <- function(serializedSlices) {
fileName <- tempfile()
conn = file(fileName, "wb")
conn <- file(fileName, "wb")
for (slice in serializedSlices) {
writeBin(as.integer(length(slice)), conn, endian = "big")
writeBin(slice, conn, endian = "big")
Expand Down

0 comments on commit 8e065c1

Please sign in to comment.