diff options
| author | John MacFarlane <[email protected]> | 2025-12-04 23:00:31 +0100 |
|---|---|---|
| committer | John MacFarlane <[email protected]> | 2025-12-04 23:00:31 +0100 |
| commit | 2c37f9541743be040e42a4176bb89fc340d1256e (patch) | |
| tree | 58611926f8d3d35140353ba4e965a2062df183ab | |
| parent | dc4f624584e66c7a74a65e4cf5d7d8f63517e2fc (diff) | |
Citeproc.BibTeX: Fix typo affecting `jurisdiction` biblatex type.
Closes #11321.
| -rw-r--r-- | src/Text/Pandoc/Citeproc/BibTeX.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Citeproc/BibTeX.hs b/src/Text/Pandoc/Citeproc/BibTeX.hs index c11c4013a..180f0988c 100644 --- a/src/Text/Pandoc/Citeproc/BibTeX.hs +++ b/src/Text/Pandoc/Citeproc/BibTeX.hs @@ -117,7 +117,7 @@ writeBibtexString opts variant mblang ref = "manuscript" -> "unpublished" "graphic" | variant == Biblatex -> "artwork" "song" | variant == Biblatex -> "music" - "legal_case" | variant == Biblatex -> "jurisdictionN" + "legal_case" | variant == Biblatex -> "jurisdiction" "legislation" | variant == Biblatex -> "legislation" "treaty" | variant == Biblatex -> "legal" "personal_communication" | variant == Biblatex -> "letter" |
