From 960f839eca7051a4495ab3bb917b08ad299c2c70 Mon Sep 17 00:00:00 2001 From: Seth Falco Date: Tue, 7 Jul 2026 23:11:12 +0100 Subject: [PATCH] chore(elixir): fix typo in wine-cellar analyzer message --- analyzer-comments/elixir/wine-cellar/use_keyword_get_values.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/analyzer-comments/elixir/wine-cellar/use_keyword_get_values.md b/analyzer-comments/elixir/wine-cellar/use_keyword_get_values.md index 73d53d3c7..6ab8f3326 100644 --- a/analyzer-comments/elixir/wine-cellar/use_keyword_get_values.md +++ b/analyzer-comments/elixir/wine-cellar/use_keyword_get_values.md @@ -1,5 +1,5 @@ # Use `Keyword.get_values` Keyword lists can contain more than one value for a key, which makes retrieving all values of a key cumbersome. -`Keyword` module, besides `Keyword.get` to get a single value, also provides `Keyword_get_values` to get multiple values. +`Keyword` module, besides `Keyword.get` to get a single value, also provides `Keyword.get_values` to get multiple values. Use `Keyword.get_values` to filter wines by color.