Commit 5f9808c
committed
fix: escape quotes in file location prompt examples
Fixed compilation error in code_search_prompts.rs caused by unescaped
quotes in example text.
Error was on line 306 where backtick-quoted example with "in" keyword
was breaking the string literal parsing.
Fix: Removed backticks and properly escaped inner quotes with backslashes
in the file location format examples.
Changed:
- Format: `ComponentName in path/to/file.rs:line`
To:
- Format: ComponentName in path/to/file.rs:line
- Example: \"ConfigLoader in src/config/loader.rs:42\"1 parent 5538731 commit 5f9808c
1 file changed
+2
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
302 | 302 | | |
303 | 303 | | |
304 | 304 | | |
305 | | - | |
306 | | - | |
| 305 | + | |
| 306 | + | |
307 | 307 | | |
308 | 308 | | |
309 | 309 | | |
| |||
0 commit comments