Skip to content

Commit 0d159a1

Browse files
committed
Correct incorrect use of options()
.defaultStringsAsFactors is a list with one named element, $stringsAsFactors, so we pass the entire list to options() to set that option back to its default.
1 parent 3de3b81 commit 0d159a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# see setup-options.R
2-
options(stringsAsFactors = .defaultStringsAsFactors)
2+
options(.defaultStringsAsFactors)

0 commit comments

Comments
 (0)