From b705d2d997e7006a1c9b2bed87063bba3219f250 Mon Sep 17 00:00:00 2001 From: Kakadu Date: Thu, 25 Jul 2024 15:59:44 +0000 Subject: [PATCH] deploy: 260e71377b3059a8db31fa985dd06677bf8641af --- lints/lints.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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"