From bc2f63de133a1b3026c67f8e75b124cb48f9200e Mon Sep 17 00:00:00 2001 From: Henrik Bengtsson Date: Mon, 28 Dec 2020 10:26:50 -0800 Subject: [PATCH] BUG FIX: seqdata -> seqData (fixes #23) --- R/getDoSeq.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/getDoSeq.R b/R/getDoSeq.R index 76fb5c7..4853968 100644 --- a/R/getDoSeq.R +++ b/R/getDoSeq.R @@ -88,7 +88,7 @@ getDoSeqVersion <- function() { # used internally to get the currently registered parallel backend getDoSeq <- function() { if (exists('seqFun', where=.foreachGlobals, inherits=FALSE)) { - list(fun=.foreachGlobals$seqFun, data=.foreachGlobals$seqdata) + list(fun=.foreachGlobals$seqFun, data=.foreachGlobals$seqData) } else { list(fun=doSEQ, data=NULL) }