aboutsummaryrefslogtreecommitdiffstats
path: root/skate
diff options
context:
space:
mode:
Diffstat (limited to 'skate')
-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]