diff options
author | Martin Czygan <martin.czygan@gmail.com> | 2021-07-26 21:36:41 +0200 |
---|---|---|
committer | Martin Czygan <martin.czygan@gmail.com> | 2021-07-26 21:36:41 +0200 |
commit | 613cb747b08d80546698633321cca274e6b008da (patch) | |
tree | 41fadfbada2cb13d5fb6956de571b7ae72fcc9b1 /skate | |
parent | 4614d6bab26fab5727722bb99e2737d914c8e816 (diff) | |
download | refcat-613cb747b08d80546698633321cca274e6b008da.tar.gz refcat-613cb747b08d80546698633321cca274e6b008da.zip |
reduce: use pascal case
Diffstat (limited to 'skate')
-rw-r--r-- | skate/reduce.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/skate/reduce.go b/skate/reduce.go index 7fcd091..9527974 100644 --- a/skate/reduce.go +++ b/skate/reduce.go @@ -577,8 +577,8 @@ func matchedRefsExtend(matched []*BiblioRef, refs []*Ref, stats *statsAugment) [ isbn string issued *CSLDate ) - for _, raw_name := range r.Biblio.ContribRawNames { - authors = append(authors, CSLAuthor{RawName: raw_name}) + for _, rawName := range r.Biblio.ContribRawNames { + authors = append(authors, CSLAuthor{RawName: rawName}) } if len(r.Biblio.Extra.ISBN) > 0 { isbn = r.Biblio.Extra.ISBN[0] |