From 0b9f6bfd456bf4ef197c927171cb9b50b0ad518f Mon Sep 17 00:00:00 2001 From: Adam Lindberg Date: Tue, 26 Nov 2019 14:21:20 +0100 Subject: [PATCH] Correct documentation escape --- src/mapz.erl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mapz.erl b/src/mapz.erl index 8e0348c..71cc8ed 100644 --- a/src/mapz.erl +++ b/src/mapz.erl @@ -69,7 +69,7 @@ deep_get(Path, Map, _Default) when is_list(Path) -> % the new association and the old associations in `Map1'. % % The call fails with a `{badmap,Map}' exception if `Map' is not a map, or with -% a `{badpath,Path}' exception if `Path' is not a path. `{badvalue,Term}` is +% a `{badpath,Path}' exception if `Path' is not a path. `{badvalue,Term}' is % raised if a term that is not a map exists as a intermediate key in the path. -spec deep_put(path(), term(), map()) -> map(). deep_put(Path, Value, Map) when is_list(Path), is_map(Map) ->