I see a lot of code like this: ```r #' @describeIn foo ``` Almost always this means the user intended `#' @rdname foo`, but the corresponding `roxygenize()` warning is not very helpful: ``` @describeIn requires name and description ``` Unfortunately it's not fully trivial to make this change since the error is coming from a more generalized piece of code: https://github.com/r-lib/roxygen2/blob/a34bdf7c7b952068b1f7742b7b34d1eac78e54da/R/tag-parser.R#L103