From 04308dbbefa55371cfd93d5f584fb1eda80cf9d0 Mon Sep 17 00:00:00 2001 From: Jeremiah Russell Date: Fri, 10 Oct 2025 13:37:41 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20docs(config):=20document=20label?= =?UTF-8?q?s=20function=20in=20EolRule?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - add documentation for the labels function in the EolRule struct --- src/config/eol_rule.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/config/eol_rule.rs b/src/config/eol_rule.rs index 36ce737..8ba8786 100644 --- a/src/config/eol_rule.rs +++ b/src/config/eol_rule.rs @@ -89,6 +89,7 @@ impl EolRule { self.id } + /// List the labels in the rules pub fn labels(&self) -> Vec { self.labels.iter().map(|i| i.to_string()).collect() }