Added documentation updates

This commit is contained in:
Armin Ronacher 2021-01-31 19:29:05 +01:00
parent 7eadf8e955
commit 7abcdc09d8
3 changed files with 9 additions and 2 deletions

View file

@ -29,7 +29,7 @@ fn main() {
ChangeTag::Insert => "+",
ChangeTag::Equal => " ",
};
print!("{}{}", sign, change.value());
print!("{}{}", sign, change);
}
}
}