diff --git a/CHANGELOG.md b/CHANGELOG.md index 73a2faf061..8bd18c4841 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -22,6 +22,7 @@ - Stop escaping JSX prop names with hyphens. https://github.com/rescript-lang/rescript-compiler/pull/6705 - Fix trailing undefined for optional parameters not omitted with `@send` and `@new`. https://github.com/rescript-lang/rescript-compiler/pull/6716 - Fix JSX4 adding the incorrect type annotation for the prop `ref` in React.forwardRef component https://github.com/rescript-lang/rescript-compiler/pull/6718 +- Fix description for warning number 110 https://github.com/rescript-lang/rescript-compiler/pull/6725 #### :nail_care: Polish diff --git a/jscomp/ext/warnings.ml b/jscomp/ext/warnings.ml index 9229eb5db1..b1a74bfd1a 100644 --- a/jscomp/ext/warnings.ml +++ b/jscomp/ext/warnings.ml @@ -647,7 +647,7 @@ let descriptions = ); (108, "Uninterpreted delimiters (for unicode)"); (109, "Toplevel expression has unit type"); - (110, "Expression has nested promise type"); + (110, "Todo found"); ] let help_warnings () =