Skip to content

Commit 604b95e

Browse files
authored
Merge pull request #1772 from proski/space-before-self
Remove space between `&` and `self`
2 parents a658124 + 8b7d11d commit 604b95e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/meta/doc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ impl Person {
4646
/// Gives a friendly hello!
4747
///
4848
/// Says "Hello, [name](Person::name)" to the `Person` it is called on.
49-
pub fn hello(& self) {
49+
pub fn hello(&self) {
5050
println!("Hello, {}!", self.name);
5151
}
5252
}

0 commit comments

Comments
 (0)