Electron100 / butane

An ORM for Rust with a focus on simplicity and on writing Rust, not SQL
Apache License 2.0
83 stars 11 forks source link

Lint docs #153

Closed jayvdb closed 8 months ago

jayvdb commented 8 months ago

This fixes all the warnings like

error: redundant explicit link target
   --> butane_core/src/lib.rs:222:25
    |
222 | /// See also [`SqlVal`][crate::SqlVal].
    |               --------  ^^^^^^^^^^^^^ explicit target is redundant
    |               |
    |               because label contains path that resolves to same destination
    |
    = note: when a link's destination is not specified,
            the label is used to resolve intra-doc links
help: remove explicit link target
    |
222 | /// See also [`SqlVal`].