Code for reproducing the bug:
' @title fo<- assignment operator
' @param object a variable
' @param ... parameters passed
' @param value a value
' @return dendrogram with updated order leaves values
"fo<-" <- function(object,..., value) x
Creates:
fo(object, ..., value) <- value
in the fo-set.Rd file.
Which results in an error in the package checks.
To fix it, I must add:
' fo(object, ...) <- value
And that would fix the problem.
Thanks :)
Tal