From 5c00a7876d4bd2a1c7316743e5e2cf1b926510d3 Mon Sep 17 00:00:00 2001 From: Michael Fogleman Date: Mon, 18 Sep 2017 09:20:51 -0400 Subject: [PATCH] Fix arities for multiple arguments. --- List-of-Navigators.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/List-of-Navigators.md b/List-of-Navigators.md index ddddb62..b16eaaa 100644 --- a/List-of-Navigators.md +++ b/List-of-Navigators.md @@ -639,7 +639,7 @@ at that index to the new index, shifting other elements in the sequence. ## keypath -`(keypath key)` +`(keypath & keys)` Navigates to the specified key, navigating to nil if it does not exist. Note that this is different from stopping navigation if the key does not exist. If you want to stop navigation, use [must](#must). @@ -720,7 +720,7 @@ applies updates to the paths in order. ## must -`(must key)` +`(must & keys)` Navigates to the key only if it exists in the map. Note that must stops navigation if the key does not exist. If you do not want to stop navigation, use [keypath](#keypath). @@ -765,7 +765,7 @@ navigated at the structure. ## nthpath -`(nthpath index)` +`(nthpath & indices)` Navigate to the specified indices (one after another). Transform to NONE to remove the element from the sequence.