From c69f52b9324a4160e2d3986ca66c16479d78a358 Mon Sep 17 00:00:00 2001 From: Wei Huang Date: Thu, 6 Nov 2025 13:55:16 +0100 Subject: [PATCH] Fix one small typo in maps efficiency guide --- system/doc/efficiency_guide/maps.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/doc/efficiency_guide/maps.md b/system/doc/efficiency_guide/maps.md index 4340d4788961..333c78fc6ab6 100644 --- a/system/doc/efficiency_guide/maps.md +++ b/system/doc/efficiency_guide/maps.md @@ -321,7 +321,7 @@ function is: `maps:filter/2` is implemented in Erlang. It creates a new map using `maps:from_list/1`. If it is known that only a minority of the values will be removed, it can be more efficient to avoid `maps:filter/2` and write a function -that will use [maps:remove/3](`maps:remove/2`) to remove the unwanted values. +that will use [maps:remove/2](`maps:remove/2`) to remove the unwanted values. ### maps:filtermap/2