Skip to content

Commit

Permalink
removed str use from vignette to try to fix R CMD Check
Browse files Browse the repository at this point in the history
  • Loading branch information
dgkf committed Aug 4, 2019
1 parent 2b6f26e commit eb38f70
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions vignettes/extending-riskmetric.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -134,11 +134,12 @@ Notice that upon initialization, the `description` field indicates that it
hasn't yet been evaluated

```{r, eval = FALSE}
str(package$description)
# show the first 3 fields from the DESCRIPTION file
package$description[,1:3]
```

```{r, echo = FALSE}
str(package_real$description)
package_real$description[,1:3]
```

Now, when we look at the contents of our `pkg_ref` object, we see that the
Expand Down

0 comments on commit eb38f70

Please sign in to comment.