aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Czygan <martin.czygan@gmail.com>2021-07-26 21:36:41 +0200
committerMartin Czygan <martin.czygan@gmail.com>2021-07-26 21:36:41 +0200
commit613cb747b08d80546698633321cca274e6b008da (patch)
tree41fadfbada2cb13d5fb6956de571b7ae72fcc9b1
parent4614d6bab26fab5727722bb99e2737d914c8e816 (diff)
downloadrefcat-613cb747b08d80546698633321cca274e6b008da.tar.gz
refcat-613cb747b08d80546698633321cca274e6b008da.zip
reduce: use pascal case
-rw-r--r--skate/reduce.go4
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]