Skip to content

Commit b3d7fac

Browse files
committed
More suggestions from review
1 parent a197bea commit b3d7fac

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

docs/get-started/computations/positron.qmd

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -105,9 +105,9 @@ In addition to running a single code cell, there are a variety of other commands
105105

106106
## Tracking down code problems
107107

108-
A good approach to trouble-shooting the code in your document
108+
A good approach to troubleshooting the code in your document
109109
is to restart your Console ({{< kbd mac=Cmd-Shift-0 win=Ctrl+Shift+0 linux=Ctrl+Shift+0 >}}), and **Quarto: Run All Cells** ({{< kbd mac=Cmd-Option-R win=Ctrl+Alt+R linux=Ctrl+Alt+R >}}).
110-
This emulates Quarto's approach to executing the code in your document: starting a clean session, and executing code cells from top to bottom.
110+
This emulates Quarto's approach to executing the code in your document: starting a clean session and executing code cells from top to bottom.
111111
112112
:::
113113
@@ -154,7 +154,6 @@ Try this with the cell labelled `scatterplot`.
154154
``` r
155155
#| label: scatterplot
156156
#| echo: true
157-
158157
ggplot(mpg, aes(x = hwy, y = cty, color = cyl)) +
159158
geom_point(alpha = 0.5, size = 2) +
160159
scale_color_viridis_c() +
@@ -295,11 +294,11 @@ You can read more about how Quarto chooses an engine in [Engine Binding](/docs/c
295294
296295
## R
297296
298-
If you completed this tutorial with R, you'll have been using the `knitr` engine.
297+
If you've been working through this tutorial with R, you have been using the `knitr` engine.
299298
See [Knitr Cell Options](/docs/reference/cells/cells-knitr.qmd) documentation for the complete list of available code cell options.
300299

301300
## Python
302-
If you completed this tutorial with Python, you'll have been using the `jupyter` engine.
301+
If you've been working through this tutorial with Python, you have been using the `jupyter` engine.
303302
See the [Jupyter Cell Options](/docs/reference/cells/cells-jupyter.qmd) documentation for the complete list of available code cell options.
304303
305304
:::
@@ -486,7 +485,7 @@ An alternative is to use inline code, which you'll cover next.
486485

487486
Code cells using the `` ```{language} `` syntax are sometimes called *executable* code cells because they will be executed by the computational engine (e.g. `knitr` or `jupyter`).
488487

489-
If you want to show code without it being processed by the computational engine use a code block:
488+
If you want to show code without it being processed by the computational engine, use a code block:
490489

491490
::: {.panel-tabset group="language"}
492491

@@ -508,7 +507,7 @@ If you want to show code without it being processed by the computational engine
508507

509508
:::
510509

511-
You can read more, and see some syntax alternatives, at [Markdown Basics: Source Code](/docs/authoring/markdown-basics.qmd#source-code)
510+
You can read more and see some syntax alternatives at [Markdown Basics: Source Code](/docs/authoring/markdown-basics.qmd#source-code).
512511

513512
:::
514513

@@ -518,7 +517,7 @@ You can read more, and see some syntax alternatives, at [Markdown Basics: Source
518517

519518
## R
520519

521-
To include executable expressions within markdown text, enclose the expression in `` `{r} ` ``^[Quarto also supports the Knitr syntax `` `r ` ``, read more in [Inline Code](/docs/computations/inline-code.qmd)].
520+
To include executable expressions within markdown text, enclose the expression in `` `{r} ` ``^[Quarto also supports the Knitr syntax `` `r ` ``, read more in [Inline Code](/docs/computations/inline-code.qmd).].
522521

523522
## Python
524523

@@ -557,7 +556,7 @@ You could now delete the code cell that did the same computation, since the inli
557556
If the expression you want to inline is more complex, involving many functions or a pipeline, we recommend including it in a code cell (with `echo: false`) and assigning the result to an object.
558557
Then, you can call that object in your inline code.
559558

560-
For additional details on inline code expressions, visit the [Inline Code](/docs/computations/inline-code.qmd) page.
559+
For additional details on inline code expressions, visit the [Inline Code](/docs/computations/inline-code.qmd) documentation.
561560

562561

563562
## Final Document

0 commit comments

Comments
 (0)