Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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
Expand Down
10 changes: 5 additions & 5 deletions src/types/person.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down