Skip to content

Commit 8b7d11d

Browse files
committed
Remove space between & and self
1 parent a658124 commit 8b7d11d

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)