aboutsummaryrefslogtreecommitdiff
path: root/R
diff options
context:
space:
mode:
authorSasaki Toru <sasakitoa@nttdata.co.jp>2016-02-11 09:30:36 +0000
committerSean Owen <sowen@cloudera.com>2016-02-11 09:30:36 +0000
commitc2f21d88981789fe3366f2c4040445aeff5bf083 (patch)
tree6a6db0982a98443ef5a4fd9642e3fefffcf40064 /R
parent18bcbbdd84e80222d1d29530831c6d68d02e7593 (diff)
downloadspark-c2f21d88981789fe3366f2c4040445aeff5bf083.tar.gz
spark-c2f21d88981789fe3366f2c4040445aeff5bf083.tar.bz2
spark-c2f21d88981789fe3366f2c4040445aeff5bf083.zip
[SPARK-13264][DOC] Removed multi-byte characters in spark-env.sh.template
In spark-env.sh.template, there are multi-byte characters, this PR will remove it. Author: Sasaki Toru <sasakitoa@nttdata.co.jp> Closes #11149 from sasakitoa/remove_multibyte_in_sparkenv.
Diffstat (limited to 'R')
-rw-r--r--R/pkg/R/serialize.R2
1 files changed, 1 insertions, 1 deletions
diff --git a/R/pkg/R/serialize.R b/R/pkg/R/serialize.R
index 095ddb9aed..70e87a93e6 100644
--- a/R/pkg/R/serialize.R
+++ b/R/pkg/R/serialize.R
@@ -54,7 +54,7 @@ writeObject <- function(con, object, writeType = TRUE) {
# passing in vectors as arrays and instead require arrays to be passed
# as lists.
type <- class(object)[[1]] # class of POSIXlt is c("POSIXlt", "POSIXt")
- # Checking types is needed here, since ‘is.na’ only handles atomic vectors,
+ # Checking types is needed here, since 'is.na' only handles atomic vectors,
# lists and pairlists
if (type %in% c("integer", "character", "logical", "double", "numeric")) {
if (is.na(object)) {