Drakulix / simplelog.rs

Simple Logging Facility for Rust
https://docs.rs/simplelog/
Apache License 2.0
414 stars 71 forks source link

Fix warnings in `cargo doc` from invalid link #132

Closed danielparks closed 1 year ago

danielparks commented 1 year ago

This just changes a doc comment to use backticks to wrap an format string rather than double quotes. Elsewhere in the crate format strings are wrapped in bacckticks in doc comments, so this seemed like the most consistent solution.


I noticed these coming up in PR diffs and figured it was an easy fix.

Drakulix commented 1 year ago

Thanks!