mirror of
https://github.com/odin-lang/Odin.git
synced 2026-02-15 07:43:13 +00:00
Fix tests for -strict-style
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user