Skip to content

Commit 340d7ee

Browse files
authored
Update parenthesized-deref-suggestion.stderr
1 parent 09fd3f8 commit 340d7ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/ui/suggestions/parenthesized-deref-suggestion.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ error[E0609]: no field `opts` on type `*const Session`
44
LL | (sess as *const Session).opts;
55
| ^^^^ unknown field
66
|
7-
help: `the value` is a raw pointer; try dereferencing it
7+
help: the value is a raw pointer; try dereferencing it
88
|
99
LL - (sess as *const Session).opts;
1010
LL + (*sess as *const Session).opts;

0 commit comments

Comments
 (0)