diff options
| author | Esteban Kuber <esteban@kuber.com.ar> | 2022-05-03 02:07:47 +0000 |
|---|---|---|
| committer | Esteban Kuber <esteban@kuber.com.ar> | 2022-05-03 02:07:47 +0000 |
| commit | 4934a9e6430b3fcb98f77205f8a625c7ffebd628 (patch) | |
| tree | ab443e88b33dbc08a833687049cf89ff886cd415 /src/test/ui/parser | |
| parent | 57967269e9946945dedd360e8e8654f5dd76ebd1 (diff) | |
| download | rust-4934a9e6430b3fcb98f77205f8a625c7ffebd628.tar.gz rust-4934a9e6430b3fcb98f77205f8a625c7ffebd628.zip | |
Tweak wording
Diffstat (limited to 'src/test/ui/parser')
| -rw-r--r-- | src/test/ui/parser/circular_modules_main.stderr | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/ui/parser/circular_modules_main.stderr b/src/test/ui/parser/circular_modules_main.stderr index f6f3babc2d5..c5434c72b38 100644 --- a/src/test/ui/parser/circular_modules_main.stderr +++ b/src/test/ui/parser/circular_modules_main.stderr @@ -10,11 +10,11 @@ error[E0425]: cannot find function `hi_str` in module `circular_modules_main` LL | println!("{}", circular_modules_main::hi_str()); | ^^^^^^ not found in `circular_modules_main` | -help: consider importing this function... +help: consider importing this function | LL | use hi_str; | -help: ...and refer to it directly +help: if you import `hi_str`, refer to it directly | LL - println!("{}", circular_modules_main::hi_str()); LL + println!("{}", hi_str()); |
