This repository was archived by the owner on Nov 24, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -133,7 +133,7 @@ fn check_version_control(matches: &::clap::ArgMatches) -> Result<(), Error> {
133
133
stream. set_color ( ColorSpec :: new ( ) . set_bold ( true ) ) ?;
134
134
writeln ! ( stream, "Could not detect a version control system" ) ?;
135
135
stream. reset ( ) ?;
136
- writeln ! ( stream, "You should consider using a VCS so you can easily see and revert rustfix' changes." ) ?;
136
+ writeln ! ( stream, "You should consider using a VCS so you can easily see and revert rustfix's changes." ) ?;
137
137
138
138
if !matches. is_present ( "allow-no-vcs" ) {
139
139
bail ! ( "No VCS found, aborting. Overwrite this behavior with `--allow-no-vcs`." ) ;
@@ -146,7 +146,7 @@ fn check_version_control(matches: &::clap::ArgMatches) -> Result<(), Error> {
146
146
stream. set_color ( ColorSpec :: new ( ) . set_bold ( true ) ) ?;
147
147
writeln ! ( stream, "Working directory dirty" ) ?;
148
148
stream. reset ( ) ?;
149
- writeln ! ( stream, "Make sure your working directory is clean so you can easily revert rustfix' changes." ) ?;
149
+ writeln ! ( stream, "Make sure your working directory is clean so you can easily revert rustfix's changes." ) ?;
150
150
151
151
stream. write_all ( & output) ?;
152
152
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ fn warns_if_no_vcs_detected() {
17
17
. check_vcs ( true )
18
18
. stderr (
19
19
"warning: Could not detect a version control system\n \
20
- You should consider using a VCS so you can easily see and revert rustfix' changes.\n \
20
+ You should consider using a VCS so you can easily see and revert rustfix's changes.\n \
21
21
error: No VCS found, aborting. Overwrite this behavior with `--allow-no-vcs`.\n \
22
22
",
23
23
)
@@ -43,7 +43,7 @@ fn warns_about_dirty_working_directory() {
43
43
. check_vcs ( true )
44
44
. stderr (
45
45
"warning: Working directory dirty\n \
46
- Make sure your working directory is clean so you can easily revert rustfix' changes.\n \
46
+ Make sure your working directory is clean so you can easily revert rustfix's changes.\n \
47
47
?? Cargo.toml\n \
48
48
?? src/\n \
49
49
error: Aborting because of dirty working directory. Overwrite this behavior with `--allow-dirty`.\n \n ",
You can’t perform that action at this time.
0 commit comments