I'm using roxygen2 for documentation in S4 and for some reason the usage section is not showing up. I made a simple example to show my confusion:
#' Title
#'
#' @param x Temp
#'
#' @return Nothing of interest.
#'
#' @export
#' @docType methods
#' @rdname A-methods
setGeneric("A", function(x, ...){
cat("test\n")
standardGeneric("A")
})
#' @rdname A-methods
#' @aliases A,ANY,ANY-method
setMethod("A", "ANY", function(x, ...){
cat(class(x))
})
#END#