Skip to content

Commit

Permalink
fix: Add missing trailing slashes in URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilzyla committed Mar 15, 2022
1 parent d971150 commit 7d07721
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Authors@R:
person("Appsilon Sp. z o.o.", role = "cph", email = "[email protected]")
)
Description: A framework that supports creating and extending enterprise Shiny applications using best practices.
URL: https://appsilon.github.io/rhino, https://github.com/Appsilon/rhino
URL: https://appsilon.github.io/rhino/, https://github.com/Appsilon/rhino
BugReports: https://github.com/Appsilon/rhino/issues
License: LGPL-3
Encoding: UTF-8
Expand Down
4 changes: 2 additions & 2 deletions vignettes/rhino-project-structure.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ R comes with the `library()` and `source()` functions,
but its functionality is limited when it comes
to dividing your code into modules and expressing their dependencies.

To address this, Rhino uses the [box](https://klmr.me/box) R package,
To address this, Rhino uses the [box](https://klmr.me/box/) R package,
which allows you to modularize your code in a similar way to languages like Python and Java:
```r
box::use(
Expand All @@ -89,7 +89,7 @@ box::use(
)
```

The best place to learn about box is its official [documentation](https://klmr.me/box).
The best place to learn about box is its official [documentation](https://klmr.me/box/).
Some useful box features are also explained in the sections below.

## `__init__.R` files
Expand Down

0 comments on commit 7d07721

Please sign in to comment.