Skip to content

Commit

Permalink
libnixf: fixup diagnostic message
Browse files Browse the repository at this point in the history
  • Loading branch information
inclyc committed Aug 19, 2024
1 parent 637c09b commit c37ef77
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions libnixf/src/Basic/diagnostic.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,14 +198,14 @@ class Diagnostic(TypedDict):
{
"sname": "sema-unused-def-lambda-witharg-formal",
"cname": "UnusedDefLambdaWithArg_Formal",
"severity": "Warning",
"message": "argument `{}` in `@`-pattern is not used",
"severity": "Hint",
"message": "attribute `{}` of `@`-pattern argument is not used, but may be referenced from the argument",
},
{
"sname": "sema-unused-def-lambda-witharg-arg",
"cname": "UnusedDefLambdaWithArg_Arg",
"severity": "Hint",
"message": "attribute `{}` of `@`-pattern argument is not used, but may be referenced from the argument",
"severity": "Warning",
"message": "argument `{}` in `@`-pattern is not used",
},
{
"sname": "sema-extra-rec",
Expand Down

0 comments on commit c37ef77

Please sign in to comment.