Skip to content

Commit

Permalink
Merge pull request #149 from Appsilon/fix-urls
Browse files Browse the repository at this point in the history
Fix URLs
  • Loading branch information
kamilzyla authored Mar 15, 2022
2 parents d971150 + 45bb8e2 commit ec95b9c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: rhino
Title: A Framework for Enterprise Shiny Applications
Version: 0.6.2
Version: 0.6.3
Authors@R:
c(
person("Kamil", "Zyla", role = c("aut", "cre"), email = "[email protected]"),
Expand All @@ -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 ec95b9c

Please sign in to comment.