Clippy warning: bare URLs in doc comments should be wrapped in <> or made proper Markdown links.
Locations:
Fix: Wrap bare URLs in angle brackets per Rust doc convention:
/// Schema reference: <https://checkstyle.org/index.html>
```
warning: you should put bare URLs between `<`/`>` or make a proper Markdown link
--> crates/diffguard-core/src/checkstyle.rs:6:23
|
6 | //! Schema reference: https://checkstyle.org/index.html
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `https://checkstyle.org/index.html`
```
Clippy warning: bare URLs in doc comments should be wrapped in <> or made proper Markdown links.
Locations:
Fix: Wrap bare URLs in angle brackets per Rust doc convention:
/// Schema reference: <https://checkstyle.org/index.html>```
warning: you should put bare URLs between `<`/`>` or make a proper Markdown link
--> crates/diffguard-core/src/checkstyle.rs:6:23
|
6 | //! Schema reference: https://checkstyle.org/index.html
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `https://checkstyle.org/index.html`
```