You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: jscomp/ext/warnings.ml
+1-1
Original file line number
Diff line number
Diff line change
@@ -379,7 +379,7 @@ let message = function
379
379
"this pattern-matching is not exhaustive.\n\
380
380
All clauses in this pattern-matching are guarded."
381
381
|Unused_varv|Unused_var_strictv ->
382
-
Format.sprintf "unused variable %s.\n\nFix this by:\n- Deleting the variable if it's not used anymiore.\n- Prepending the variable name with `_` (like `_%s`) to ignore that the variable is unused.\n- Using the variable somewhere." v v
382
+
Format.sprintf "unused variable %s.\n\nFix this by:\n- Deleting the variable if it's not used anymore.\n- Prepending the variable name with `_` (like `_%s`) to ignore that the variable is unused.\n- Using the variable somewhere." v v
383
383
|Wildcard_arg_to_constant_constr ->
384
384
"wildcard pattern given as argument to a constant constructor"
0 commit comments