Skip to content

Commit 66b1a96

Browse files
committed
Wording changes
1 parent 576558c commit 66b1a96

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

vignettes/working-with-errorist.Rmd

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,15 +74,16 @@ many_warnings = function() {
7474
}
7575
```
7676

77-
This function when run will issue exactly **four warnings**. However, only
78-
three of these warnings are unique. Thus, there will be exactly **three**
79-
searches performed after the function finishes its execution.
77+
When run, the `many_warnings()` function will issue exactly **four warnings**.
78+
However, only three of these warnings are unique. Thus, there will be exactly
79+
**three** searches performed after the function finishes its execution. As a
80+
result, the output will be like:
8081

8182
```{r, echo = FALSE}
8283
message("Warning messages:")
8384
message("1: In many_warnings() : First warning")
8485
message("2: In many_warnings() : Second warning")
85-
message("3: In many_warnings() : Third warning")
86+
message("3: In many_warnings() : Random warning")
8687
message("Searching query in a web browser ... ")
8788
message("Searching query in a web browser ... ")
8889
message("Searching query in a web browser ... ")

0 commit comments

Comments
 (0)