We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Standardize whether function doc strings sit before or after function body.
Great job on the documentation throughout. Typically doc for R functions sits outside the function body, rather than inside:
#' @description stuff here #' @param a stuff here #' @param b more stuff here foo <- function(a, b) { #even more stuff }
Question for you - is it the other way in python?
Originally posted by @padilla410 in #16 (comment)
The text was updated successfully, but these errors were encountered:
padilla410
No branches or pull requests
Standardize whether function doc strings sit before or after function body.
Originally posted by @padilla410 in #16 (comment)
The text was updated successfully, but these errors were encountered: