jimmyday12 / fitzRoy

A set of functions to easily access AFL data
https://jimmyday12.github.io/fitzRoy
Other
125 stars 27 forks source link

minor rendering cli output error for fetch_player_stats_afl #185

Closed davescroggs closed 1 year ago

davescroggs commented 1 year ago

Hi James,

Just found a bracket in the wrong spot in line 15 of the fetch_player_stats_afl function meaning the val unicode doesn't render in the console. It's such a minor fix I thought it wasn't worth a pull request.

Current code cli_id2 <- cli::cli_process_start("Fetching player stats for {.val {length(ids)} match{?es}}.")

Suggested code cli_id2 <- cli::cli_process_start("Fetching player stats for {.val {length(ids)}} match{?es}.")

image