fix: update drifted citation line numbers

- option_parser.ex: String.to_existing_atom/1 is at line 859, not 855
  (line 855 is the String.to_atom clause for allow_nonexistent_atoms)
- logger test_helper.exs: capture_log after clause spans lines 57-65,
  not 57-62 (the 'after' keyword is at line 64, restore at line 65)
This commit is contained in:
OpenClaw
2026-05-06 17:17:10 -07:00
parent 40f024b477
commit f595b91030
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -401,7 +401,7 @@ setup do
end
```
**Source:** `lib/logger/test/logger_test.exs:12-17` — Every Logger config change has a corresponding `on_exit` restoration. `lib/logger/test/test_helper.exs:57-62``capture_log` uses `after` to always restore level.
**Source:** `lib/logger/test/logger_test.exs:12-17` — Every Logger config change has a corresponding `on_exit` restoration. `lib/logger/test/test_helper.exs:57-65``capture_log` uses `after` to always restore level.
### When to Apply This Rule