From 5a0a241c80c72d07f22a312bea31e0921e4bf0cc Mon Sep 17 00:00:00 2001 From: Christopher Paciorek Date: Fri, 20 Jun 2025 09:17:37 -0700 Subject: [PATCH] Fix misspelling in an error msg. --- packages/nimble/R/nimbleProject.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/nimble/R/nimbleProject.R b/packages/nimble/R/nimbleProject.R index 690470696..01e0b6c9b 100644 --- a/packages/nimble/R/nimbleProject.R +++ b/packages/nimble/R/nimbleProject.R @@ -899,7 +899,7 @@ nimbleProjectClass <- setRefClass('nimbleProjectClass', ans <- nfCppDef$buildCallable(nf, dll = dll, asTopLevel = asTopLevel) ok <- !is.null(ans) } - if(!ok) stop("Oops, there is something in this compilation job that doesn\'t fit together. This can happen in some cases if you are trying to compile new pieces into an exising project. If that is the situation, please try including \"resetFunctions = TRUE\" as an argument to compileNimble. Alternatively please try rebuilding the project from the beginning with more pieces in the same call to compileNimble. For example, if you are compiling multiple algorithms for the same model in multiple calls to compileNimble, try compiling them all with one call.", call. = FALSE) + if(!ok) stop("There is something in this compilation job that doesn\'t fit together. This can happen in some cases if you are trying to compile new pieces into an existing project. If that is the situation, please try including \"resetFunctions = TRUE\" as an argument to compileNimble. Alternatively please try rebuilding the project from the beginning with more pieces in the same call to compileNimble. For example, if you are compiling multiple algorithms for the same model in multiple calls to compileNimble, try compiling them all with one call.", call. = FALSE) ans },