From 2e05f5ffdffd0a80117d6f5edf2939b52bfb0077 Mon Sep 17 00:00:00 2001 From: Anton Kochkov Date: Wed, 6 Nov 2019 04:52:46 -0800 Subject: [PATCH] [infer][PR] Fix the ppx_deriving issue URL Summary: Pretty trivial, but important in case GitHub will stop redirecting. Pull Request resolved: https://github.com/facebook/infer/pull/1177 Differential Revision: D18347364 Pulled By: jvillard fbshipit-source-id: b4e632780 --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index dca710694..96cef4a90 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -152,7 +152,7 @@ module MF = MarkupFormatter ``` - Use `[@@deriving compare]` to write comparison functions whenever possible. Watch out for - [this issue](https://github.com/whitequark/ppx_deriving/issues/116) when writing + [this issue](https://github.com/ocaml-ppx/ppx_deriving/issues/116) when writing `type nonrec t = t [@@deriving compare]`. - Use `let equal_foo = [%compare.equal : foo]` to write equality functions whenever possible.