From 299ed09b7f96ce562a701997d2ee84e75c5c5719 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mil=C3=A1n=20B=C3=B3r?= Date: Thu, 10 Oct 2024 14:54:10 +0200 Subject: [PATCH] fix markdown --- doc_rules/elvis_style/no_init_lists.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/doc_rules/elvis_style/no_init_lists.md b/doc_rules/elvis_style/no_init_lists.md index 1ff6d7d..d22f008 100644 --- a/doc_rules/elvis_style/no_init_lists.md +++ b/doc_rules/elvis_style/no_init_lists.md @@ -1,6 +1,8 @@ # No Init Lists -Do not use a list as the parameter for the `init/1` callback when implementing `gen_*` behaviours. It's semantically clearer to use a tuple or a map. [More info](https://erlangforums.com/t/args-in-gen-init-1/3169/5) +Do not use a list as the parameter for the `init/1` callback when implementing `gen_*` behaviours. +It's semantically clearer to use a tuple or a map. +[More info](https://erlangforums.com/t/args-in-gen-init-1/3169/5) > Works on `.beam` files? Yes!