Closed sin closed 2 years ago
Some of the links are formatted as function_name() or library::function_name() instead of just function_name. This is the convention in the tidyverse's docs.
function_name()
library::function_name()
function_name
This change simply removes the brackets and splits the library and function names.
Link to tidyselect::vars_pull() from tidyr:
tidyselect::vars_pull()
Before: /link/tidyselect::vars_pull()?package=tidyr After: /link/vars_pull?package=tidyselect
/link/tidyselect::vars_pull()?package=tidyr
/link/vars_pull?package=tidyselect
More info in #81.
Some of the links are formatted as
function_name()
orlibrary::function_name()
instead of justfunction_name
. This is the convention in the tidyverse's docs.This change simply removes the brackets and splits the library and function names.
Link to
tidyselect::vars_pull()
from tidyr:Before:
/link/tidyselect::vars_pull()?package=tidyr
After:/link/vars_pull?package=tidyselect
More info in #81.