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
If I have the following code with single quote and a comment :
#' @import shiny this <- function() { c( 'this', #'this', 'this', ) }
roxygen2::roxygenize() will produce the following NAMESPACE:
roxygen2::roxygenize()
NAMESPACE
# Generated by roxygen2: do not edit by hand import("this',") import(shiny)
The commented code inside the function body is not added to the NAMESPACE
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
If I have the following code with single quote and a comment :
roxygen2::roxygenize()
will produce the followingNAMESPACE
:Expected behavior
The commented code inside the function body is not added to the
NAMESPACE
The text was updated successfully, but these errors were encountered: