Prints specific treatment recommendations for issues found by checktor().
Examples
pkg <- example_diagnose_scenario("code_examples/tf_usage_bad.R",
show_content = FALSE)
results <- checktor(pkg, verbose = FALSE, progress = FALSE)
prescribe(results)
#> ── Treatment Recommendations ───────────────────────────────────────────────────
#>
#> ── T/F Usage Issues
#> Treatment: Replace {.code T} with {.code TRUE} and {.code F} with {.code FALSE}
#> # Before
#> result <- T
#> # After
#> result <- TRUE
#>