File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -74,15 +74,16 @@ many_warnings = function() {
74
74
}
75
75
```
76
76
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:
80
81
81
82
``` {r, echo = FALSE}
82
83
message("Warning messages:")
83
84
message("1: In many_warnings() : First warning")
84
85
message("2: In many_warnings() : Second warning")
85
- message("3: In many_warnings() : Third warning")
86
+ message("3: In many_warnings() : Random warning")
86
87
message("Searching query in a web browser ... ")
87
88
message("Searching query in a web browser ... ")
88
89
message("Searching query in a web browser ... ")
You can’t perform that action at this time.
0 commit comments