diff options
| author | A Farzat <a@farzat.xyz> | 2026-06-05 05:42:16 +0300 |
|---|---|---|
| committer | A Farzat <a@farzat.xyz> | 2026-06-05 05:42:16 +0300 |
| commit | 58d6afbd8bb02890106f84621a1cda94c7b5d3bf (patch) | |
| tree | cce9ec669bfb436a8771806fdfd0fe9cf318d03a /src/main.rs | |
| parent | 469e303febc61ebca3b5a977cf675b9f57111767 (diff) | |
| download | repo2markdown-58d6afbd8bb02890106f84621a1cda94c7b5d3bf.tar.gz repo2markdown-58d6afbd8bb02890106f84621a1cda94c7b5d3bf.zip | |
Make headers more descriptive for LLMs
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs index 3e78fe4..bb01e47 100644 --- a/src/main.rs +++ b/src/main.rs @@ -140,7 +140,7 @@ mod tests { let output_str = String::from_utf8(output).unwrap(); - assert!(output_str.contains("### \"test_main.rs\"")); + assert!(output_str.contains("## File: \"test_main.rs\"")); assert!(output_str.contains("fn main() {}")); } @@ -181,7 +181,7 @@ mod tests { let output = String::from_utf8(output).unwrap(); - assert!(output.contains("### \"test/main.rs\"")); + assert!(output.contains("## File: \"test/main.rs\"")); } #[test] |
