Skip to content

Commit

Permalink
Once again.
Browse files Browse the repository at this point in the history
  • Loading branch information
dbosak01 committed Sep 6, 2023
1 parent 6351060 commit e64744b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions R/oq.R
Original file line number Diff line number Diff line change
Expand Up @@ -664,12 +664,12 @@ check_reporter<- function(opth) {
put("Source dataset:")
put(dt)

tbl <- create_table(dt) |>
titles("Test title") |>
footnotes("Test footnotes")
tbl <- create_table(dt)
tbl <- titles(tbl, "Test title")
tbl <- footnotes(tbl, "Test footnotes")

rpt <- create_report(pth, font = "Courier") |>
add_content(tbl)
rpt <- create_report(pth, font = "Courier")
rpt <- add_content(rpt, tbl)

res <- write_report(rpt, output_type = "TXT")

Expand Down

0 comments on commit e64744b

Please sign in to comment.