Browse Source

Fix tests for `-strict-style`

gingerBill 2 years ago
parent
commit
c8f475174e
1 changed files with 2 additions and 2 deletions
  1. 2 2
      tests/documentation/documentation_tester.odin

+ 2 - 2
tests/documentation/documentation_tester.odin

@@ -238,10 +238,10 @@ find_and_add_examples :: proc(docs: string, package_name: string, entity_name: s
 			}
 		}
 		// Remove first layer of tabs which are always present
-		for line in &example_block.lines {
+		for &line in example_block.lines {
 			line = strings.trim_prefix(line, "\t")
 		}
-		for line in &output_block.lines {
+		for &line in output_block.lines {
 			line = strings.trim_prefix(line, "\t")
 		}
 		append(&g_examples_to_verify, Example_Test {