Skip to content

Commit

Permalink
Merge 7a49711 into f530d7f
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisMuir committed Mar 31, 2018
2 parents f530d7f + 7a49711 commit 714cefb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/R/stringdist.R
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ stringdist <- function(a, b
if (maxDist < Inf)
warning("Argument 'maxDist' is deprecated for function 'stringdist'. This argument will be removed in the future.")
if (is.list(a)|is.list(b))
warning(listwarning("stringdist","seqdist"))
warning(listwarning("stringdist","seq_dist"))

stopifnot(
all(is.finite(weight))
Expand Down Expand Up @@ -221,7 +221,7 @@ stringdistmatrix <- function(a, b
message("Argument 'cluster' is deprecaterd as stringdust now uses multithreading by default. The argument is currently ignored and will be removed in the future")
}
if (is.list(a)|| (!missing(b) && is.list(b)) ){
warning(listwarning("stringdistmatrix","seqdistmatrix"))
warning(listwarning("stringdistmatrix","seq_distmatrix"))
}

# for backward compatability with stringdist <= 0.9.0
Expand Down

0 comments on commit 714cefb

Please sign in to comment.