Skip to content

Commit 7773f93

Browse files
committed
Add contributors
1 parent 05d3788 commit 7773f93

File tree

2 files changed

+41
-4
lines changed

2 files changed

+41
-4
lines changed

CONTRIBUTORS

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,40 @@ Ossama Hjaji <ossama-hjaji@live.fr>
22
Richard Hozák <r.hozak@seznam.cz>
33
Ryan Troxler <troxler.ryan@gmail.com>
44
xynxynxyn <t.e.pinke@student.utwente.nl>
5+
Ossama Hjaji <ossama-hjaji@live.fr>
6+
xynxynxyn <t.e.pinke@student.utwente.nl>
7+
Spenser Black <spenserblack01@gmail.com>
8+
JoshBrudnak <jobrud314@gmail.com>
9+
cnsumner <cnsumner@users.noreply.github.com>
10+
zxey <zxey@users.noreply.github.com>
11+
Francesco Dipi <francesco.dipi+github@gmail.com>
12+
Nikos Filippakis <nikolaos.filippakis@cern.ch>
13+
Rob Warner <rob.warner@availity.com>
14+
Ryan Troxler <rtroxler@rednovalabs.com>
15+
Vinh Nguyen <vinh.nguyenxuan@2359media.com>
16+
eman0n <EmanonTang@outlook.com>
17+
A. Nackov <anackov@gmail.com>
18+
Alan Pope <alan@popey.com>
19+
Arvid Boivie <arvid.boivie@freespee.com>
20+
Josh Stone <yakovdk@gmail.com>
21+
Kitlith <kitlith@kitl.pw>
22+
Quint Daenen <quint.daenen@student.kuleuven.be>
23+
Ossama Hjaji <ossama-hjaji@live.fr>
24+
xynxynxyn <t.e.pinke@student.utwente.nl>
25+
Spenser Black <spenserblack01@gmail.com>
26+
JoshBrudnak <jobrud314@gmail.com>
27+
cnsumner <cnsumner@users.noreply.github.com>
28+
zxey <zxey@users.noreply.github.com>
29+
Francesco Dipi <francesco.dipi+github@gmail.com>
30+
Nikos Filippakis <nikolaos.filippakis@cern.ch>
31+
Rob Warner <rob.warner@availity.com>
32+
Ryan Troxler <rtroxler@rednovalabs.com>
33+
Vinh Nguyen <vinh.nguyenxuan@2359media.com>
34+
eman0n <EmanonTang@outlook.com>
35+
A. Nackov <anackov@gmail.com>
36+
Alan Pope <alan@popey.com>
37+
Arvid Boivie <arvid.boivie@freespee.com>
38+
Josh Stone <yakovdk@gmail.com>
39+
Kitlith <kitlith@kitl.pw>
40+
Quint Daenen <quint.daenen@student.kuleuven.be>
41+
Willy Chen <st40809@gmail.com>

src/main.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -97,17 +97,17 @@ impl fmt::Display for Info {
9797

9898
if !self.authors.is_empty() {
9999
let title = if self.authors.len() > 1 {
100-
"Authors: "
100+
"Contributors: "
101101
} else {
102-
"Author: "
102+
"Contributor: "
103103
};
104104

105-
writeln!(buffer, "{}{:3}% {:15} {}", title.color(color).bold(), self.authors[0].2, self.authors[0].0, self.authors[0].1)?;
105+
writeln!(buffer, "{}{}% {} {}", title.color(color).bold(), self.authors[0].2, self.authors[0].0, self.authors[0].1)?;
106106

107107
let title = " ".repeat(title.len());
108108

109109
for author in self.authors.iter().skip(1) {
110-
writeln!(buffer, "{}{:3}% {:15} {}", title.color(color).bold(), author.2, author.0, author.1)?;
110+
writeln!(buffer, "{}{}% {} {}", title.color(color).bold(), author.2, author.0, author.1)?;
111111
}
112112
}
113113

0 commit comments

Comments
 (0)