diff --git a/rmarkdown.Rmd b/rmarkdown.Rmd
index 752435a..ad215a5 100644
--- a/rmarkdown.Rmd
+++ b/rmarkdown.Rmd
@@ -62,7 +62,7 @@ To produce a complete report containing all text, code, and results, click "Knit
knitr::include_graphics("rmarkdown/diamond-sizes-report.png")
```
-When you __knit__ the document R Markdown sends the .Rmd file to __knitr__, http://yihui.name/knitr/, which executes all of the code chunks and creates a new markdown (.md) document which includes the code and its output. The markdown file generated by knitr is then processed by __pandoc__, , which is responsible for creating the finished file. The advantage of this two step workflow is that you can create a very wide range of output formats, as you'll learn about in [R markdown formats].
+When you __knit__ the document, R Markdown sends the .Rmd file to __knitr__, http://yihui.name/knitr/, which executes all of the code chunks and creates a new markdown (.md) document which includes the code and its output. The markdown file generated by knitr is then processed by __pandoc__, , which is responsible for creating the finished file. The advantage of this two step workflow is that you can create a very wide range of output formats, as you'll learn about in [R markdown formats].
```{r, echo = FALSE, out.width = "75%"}
knitr::include_graphics("images/RMarkdownFlow.png")