diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e72de87..7f6ca4d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - uses: dtolnay/rust-toolchain@1.85.0 + - uses: dtolnay/rust-toolchain@1.87.0 - run: cargo build - run: cargo test @@ -19,7 +19,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - uses: dtolnay/rust-toolchain@1.85.0 + - uses: dtolnay/rust-toolchain@1.87.0 with: components: clippy, rustfmt - uses: Swatinem/rust-cache@v2 diff --git a/src/types/person.rs b/src/types/person.rs index d2388bb..92ef150 100644 --- a/src/types/person.rs +++ b/src/types/person.rs @@ -24,12 +24,12 @@ pub struct Person { impl Person { /// Constructs a new person from a chunk vector: /// 1. according to the specs of - /// [Nicolas Markey in "Tame the BeaST"][taming], pp. 23-24. + /// [Nicolas Markey in "Tame the BeaST"][taming], pp. 23-24. /// 2. biblatex extended name format according to the - /// [documentation of biblatex][biblatex], section 3.4 pp. 80-81, - /// and section §4.2.3 pp. 164-165. - /// Support is limited to default `nameparts`: prefix, family, - /// suffix, given. + /// [documentation of biblatex][biblatex], section 3.4 pp. 80-81, + /// and section §4.2.3 pp. 164-165. + /// Support is limited to default `nameparts`: prefix, family, + /// suffix, given. /// /// [taming]: https://ftp.rrze.uni-erlangen.de/ctan/info/bibtex/tamethebeast/ttb_en.pdf /// [biblatex]: https://ctan.gutenberg-asso.fr/macros/latex/contrib/biblatex/doc/biblatex.pdf