You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: vignettes/rcmd_issues.Rmd
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -67,22 +67,22 @@ This will ensure that the exact package versions we use in the workflow are inst
67
67
## Package Dependencies
68
68
69
69
> checking package dependencies ... ERROR
70
-
Namespace dependency not required: βpkgβ
70
+
Namespace dependency not required: 'pkg'
71
71
72
72
Add `pkg` to the `Imports` or `Suggests` field in the `DESCRIPTION` file. In general, dependencies should be listed in the `Imports` field. However, if a package is only used inside vignettes or unit tests it should be listed in `Suggests` because all `{admiral}` functions would work without these "soft" dependencies being installed.
73
73
74
74
## Global Variables
75
75
76
76
β― checking R code for possible problems ... NOTE
77
-
function_xyz: no visible binding for global variable βsome_varβ
77
+
function_xyz: no visible binding for global variable 'some_var'
78
78
79
79
Add `some_var` to the list of "global" variables in `R/globals.R`.
80
80
81
81
## Undocumented Function Parameter
82
82
83
83
β― checking Rd \usage sections ... WARNING
84
84
Undocumented arguments in documentation object 'function_xyz'
85
-
βsome_paramβ
85
+
'some_param'
86
86
87
87
Add an `@param some_param` section in the header of `function_xyz()` and run `devtools::document()` afterwards.
Copy file name to clipboardExpand all lines: vignettes/writing_vignettes.Rmd
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -189,7 +189,7 @@ affected.
189
189
190
190
Footnotes can be useful to add context without adding clutter to the primary subject matter of the vignette being written.
191
191
192
-
To use footnotes, add a caret and an identifier inside brackets e.g. `([^1])`. The identifiers can be numbers or words, but they canβt contain spaces or tabs.
192
+
To use footnotes, add a caret and an identifier inside brackets e.g. `([^1])`. The identifiers can be numbers or words, but they can't contain spaces or tabs.
193
193
194
194
The following markdown text will render as follows:
0 commit comments