Update Primer.md
fix bug in string comparison assertions table where _str2_ is mistakenly written as _str_2
This commit is contained in:
		@@ -179,7 +179,7 @@ two `string` objects, use `EXPECT_EQ`, `EXPECT_NE`, and etc instead.
 | 
			
		||||
 | 
			
		||||
| **Fatal assertion** | **Nonfatal assertion** | **Verifies** |
 | 
			
		||||
|:--------------------|:-----------------------|:-------------|
 | 
			
		||||
| `ASSERT_STREQ(`_str1_`, `_str2_`);`    | `EXPECT_STREQ(`_str1_`, `_str_2`);`     | the two C strings have the same content |
 | 
			
		||||
| `ASSERT_STREQ(`_str1_`, `_str2_`);`    | `EXPECT_STREQ(`_str1_`, `_str2_`);`     | the two C strings have the same content |
 | 
			
		||||
| `ASSERT_STRNE(`_str1_`, `_str2_`);`    | `EXPECT_STRNE(`_str1_`, `_str2_`);`     | the two C strings have different content |
 | 
			
		||||
| `ASSERT_STRCASEEQ(`_str1_`, `_str2_`);`| `EXPECT_STRCASEEQ(`_str1_`, `_str2_`);` | the two C strings have the same content, ignoring case |
 | 
			
		||||
| `ASSERT_STRCASENE(`_str1_`, `_str2_`);`| `EXPECT_STRCASENE(`_str1_`, `_str2_`);` | the two C strings have different content, ignoring case |
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user