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() {
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}
8283message("Warning messages:") 
8384message("1: In many_warnings() : First warning") 
8485message("2: In many_warnings() : Second warning") 
85- message("3: In many_warnings() : Third  warning") 
86+ message("3: In many_warnings() : Random  warning") 
8687message("Searching query in a web browser ... ") 
8788message("Searching query in a web browser ... ") 
8889message("Searching query in a web browser ... ") 
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments