Skip to content

Commit

Permalink
Spell check
Browse files Browse the repository at this point in the history
  • Loading branch information
nx10 committed Jan 22, 2024
1 parent 794bce7 commit 54f3481
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion R/unigd.R
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ ugd_render <- function(page = 0,

#' Render unigd plot to a file.
#'
#' See [ugd_render()] for acessing plot data directly in memory without
#' See [ugd_render()] for accessing plot data directly in memory without
#' saving as a file.
#' This function will only work after starting a device with [ugd()].
#'
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ See [the guide](https://nx10.github.io/unigd/articles/b00_guide.html) for more d

## Contributions welcome!

`unigd` is mostly written in C++, but contributions to the tests (in R) or the documentatation are also always welcome!
`unigd` is mostly written in C++, but contributions to the tests (in R) or the documentation are also always welcome!

## About &amp; License

Expand Down
2 changes: 1 addition & 1 deletion man/ugd_save.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions vignettes/b00_guide.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ hist(temp, col="darkblue") # (2) Plot a histogram
dev.off() # (3) Close the device
```

Note that this has some unfortunate contstraints:
Note that this has some unfortunate constraints:

- Rendering information must be specified _before_ the plot is created
- File format (`png()`, `pdf()`, `svg()`, ...)
Expand Down Expand Up @@ -88,7 +88,7 @@ The next section will illustrate how to access the render data directly without

For some applications, you might want to access the rendered data directly.
Example use-cases for this might be report generation, web services or interactive applications.
While you can most likely think of work-arounds for this issue, this `unigd`
While you can most likely think of workarounds for this issue, this `unigd`
feature will certainly lower code complexity and increase performance.

Rendering in-memory is done by simply calling `ugd_render(...)` instead of `ugd_save(...)`:
Expand Down Expand Up @@ -223,7 +223,7 @@ not go into too much detail about this topic but here are some noteworthy mentio

- `"strings"`-renderer
- All text elements inside a plot
- Linebreak seperated plain text format
- Linebreak separated plain text format
- Could be used to e.g. 'search' through plots
- `"meta"`-renderer
- Meta information about the plot
Expand Down

0 comments on commit 54f3481

Please sign in to comment.