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

Diff for: CONTRIBUTORS

+37
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,40 @@ Ossama Hjaji <[email protected]>
22
Richard Hozák <[email protected]>
33
Ryan Troxler <[email protected]>
44
xynxynxyn <[email protected]>
5+
Ossama Hjaji <[email protected]>
6+
xynxynxyn <[email protected]>
7+
Spenser Black <[email protected]>
8+
JoshBrudnak <[email protected]>
9+
10+
11+
Francesco Dipi <[email protected]>
12+
Nikos Filippakis <[email protected]>
13+
Rob Warner <[email protected]>
14+
Ryan Troxler <[email protected]>
15+
Vinh Nguyen <[email protected]>
16+
17+
A. Nackov <[email protected]>
18+
Alan Pope <[email protected]>
19+
Arvid Boivie <[email protected]>
20+
Josh Stone <[email protected]>
21+
22+
Quint Daenen <[email protected]>
23+
Ossama Hjaji <[email protected]>
24+
xynxynxyn <[email protected]>
25+
Spenser Black <[email protected]>
26+
JoshBrudnak <[email protected]>
27+
28+
29+
Francesco Dipi <[email protected]>
30+
Nikos Filippakis <[email protected]>
31+
Rob Warner <[email protected]>
32+
Ryan Troxler <[email protected]>
33+
Vinh Nguyen <[email protected]>
34+
35+
A. Nackov <[email protected]>
36+
Alan Pope <[email protected]>
37+
Arvid Boivie <[email protected]>
38+
Josh Stone <[email protected]>
39+
40+
Quint Daenen <[email protected]>
41+
Willy Chen <[email protected]>

Diff for: src/main.rs

+4-4
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)