Procházet zdrojové kódy

Fix tests for `-strict-style`

gingerBill před 2 roky
rodič
revize
c8f475174e
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  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 {