diff --git a/lints/lints.json b/lints/lints.json index fdb3c48..8f8d7a4 100644 --- a/lints/lints.json +++ b/lints/lints.json @@ -253,11 +253,11 @@ } }, { - "id": "record_1", + "id": "record_punning", "group": "suspicious", "level": "warn", "impl": "typed", - "docs": "### What it does\nSimplyfies record construction using OCaml-specfic field punning.\n\n[Chapter](https://dev.realworldocaml.org/records.html) in 'Real World OCaml'.\n\n##### Examples\n\n```ocaml\n{ x = r.x; y = r.y; z = 15}\n```\nvs\n```ocaml\n{ r with z = 15 }\n```", + "docs": "### What it does\nSimplyfies record construction using OCaml-specific field punning.\n\n[Chapter](https://dev.realworldocaml.org/records.html) in 'Real World OCaml'.\n\n##### Examples\n\n```ocaml\n{ x = r.x; y = r.y; z = 15}\n```\nvs\n```ocaml\n{ r with z = 15 }\n```", "applicability": { "is_multi_part_suggestion": false, "applicability": "Unresolved"