mirror of
				https://github.com/catchorg/Catch2.git
				synced 2025-11-04 14:09:33 +01:00 
			
		
		
		
	Fix typos in the code base (#2206)
Note that only documentation and comments are impacted by this change.
This commit is contained in:
		@@ -21,7 +21,7 @@ namespace Catch {
 | 
			
		||||
            // Extracts the actual name part of an enum instance
 | 
			
		||||
            // In other words, it returns the Blue part of Bikeshed::Colour::Blue
 | 
			
		||||
            StringRef extractInstanceName(StringRef enumInstance) {
 | 
			
		||||
                // Find last occurence of ":"
 | 
			
		||||
                // Find last occurrence of ":"
 | 
			
		||||
                size_t name_start = enumInstance.size();
 | 
			
		||||
                while (name_start > 0 && enumInstance[name_start - 1] != ':') {
 | 
			
		||||
                    --name_start;
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user