Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
JsLth committed Sep 19, 2024
1 parent 63ae9e4 commit 098c951
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/methods.R
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ format.ORSInstance <- function(x, ...) {
# check if local or remote
type <- ifelse(ors_is_local(x), "local", "remote")
is_local <- identical(type, "local")
ltype <- ifelse(is_local, paste0("(", get_ors_local_type(ors), ")"), "")
ltype <- ifelse(is_local, paste0("(", get_ors_local_type(x), ")"), "")

if (is.null(x$paths) && is_local) {
return("<ORSInstance>")
Expand Down

0 comments on commit 098c951

Please sign in to comment.