From f03b2e4a67db20a34ec63313144681b078bc715b Mon Sep 17 00:00:00 2001 From: Zeki Akyol <40212849+zekiakyol@users.noreply.github.com> Date: Sat, 25 Feb 2023 17:06:46 +0300 Subject: [PATCH] Fix typo (#1302) --- workflow-style.qmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workflow-style.qmd b/workflow-style.qmd index 88167a3..ae6f2c0 100644 --- a/workflow-style.qmd +++ b/workflow-style.qmd @@ -96,7 +96,7 @@ It's OK to add extra spaces if it improves alignment. For example, if you're creating multiple variables in `mutate()`, you might want to add spaces so that all the `=` line up.[^workflow-style-1] This makes it easier to skim the code. -[^workflow-style-1]: Since `dep_time` is in `HMM` or `HHMM` fomat, we use integer division (`%/%`) to get hour and remainder (also known as modulo, `%%`) to get minute. +[^workflow-style-1]: Since `dep_time` is in `HMM` or `HHMM` format, we use integer division (`%/%`) to get hour and remainder (also known as modulo, `%%`) to get minute. ```{r} #| eval: false