summaryrefslogtreecommitdiffstats
path: root/tests/ui/issues/issue-98299.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/issues/issue-98299.stderr')
-rw-r--r--tests/ui/issues/issue-98299.stderr2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ui/issues/issue-98299.stderr b/tests/ui/issues/issue-98299.stderr
index fd905392a..4fd9f3030 100644
--- a/tests/ui/issues/issue-98299.stderr
+++ b/tests/ui/issues/issue-98299.stderr
@@ -4,7 +4,7 @@ error[E0282]: type annotations needed for `SmallCString<N>`
LL | SmallCString::try_from(p).map(|cstr| cstr);
| ^^^^
|
-help: consider giving this closure parameter an explicit type, where the the value of const parameter `N` is specified
+help: consider giving this closure parameter an explicit type, where the value of const parameter `N` is specified
|
LL | SmallCString::try_from(p).map(|cstr: SmallCString<N>| cstr);
| +++++++++++++++++