You've already forked comprehensive-rust
							
							
				mirror of
				https://github.com/google/comprehensive-rust.git
				synced 2025-10-31 08:37:45 +02:00 
			
		
		
		
	Use both break and continue for consistency (#2412)
				
					
				
			To me, this little change makes it a little clearer that we either print something, we break, or we continue in the loop.
This commit is contained in:
		| @@ -45,7 +45,7 @@ extern "C" fn main(x0: u64, x1: u64, x2: u64, x3: u64) { | ||||
|                     uart.write_byte(b'\n'); | ||||
|                 } | ||||
|                 b'q' => break, | ||||
|                 _ => {} | ||||
|                 _ => continue, | ||||
|             } | ||||
|         } | ||||
|     } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user