From 764362d8159c61fb280791a1dc6788e800f8ddf9 Mon Sep 17 00:00:00 2001 From: Nathan Marz Date: Mon, 20 Jun 2016 12:12:37 -0400 Subject: [PATCH] Updated List of Navigators (markdown) --- List-of-Navigators.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/List-of-Navigators.md b/List-of-Navigators.md index 8ec72a3..a723115 100644 --- a/List-of-Navigators.md +++ b/List-of-Navigators.md @@ -287,7 +287,7 @@ See also [walker](#walker). `(collect & paths)` -`collect` adds the result of running `collect` with the given path on the current value to the collected vals. Note that `collect`, like `select`, returns a vector containing its results. If `transform` is called, each collected value will be passed as an argument to the transforming function with the resulting value as the last argument. +`collect` adds the result of running `select` with the given path on the current value to the collected vals. Note that `collect`, like `select`, returns a vector containing its results. If `transform` is called, each collected value will be passed as an argument to the transforming function with the resulting value as the last argument. See also [VAL](#val), [collect-one](#collect-one), and [putval](#putval) @@ -312,7 +312,7 @@ See also [VAL](#val), [collect-one](#collect-one), and [putval](#putval) `(collect-one & paths)` -`collect-one` adds the result of running `collect` with the given path on the current value to the collected vals. Note that `collect-one`, like `select-one`, returns a single result. If there is more than one result, an exception will be thrown. If `transform` is called, each collected value will be passed as an argument to the transforming function with the resulting value as the last argument. +`collect-one` adds the result of running `select-one` with the given path on the current value to the collected vals. Note that `collect-one`, like `select-one`, returns a single result. If there is more than one result, an exception will be thrown. If `transform` is called, each collected value will be passed as an argument to the transforming function with the resulting value as the last argument. See also [VAL](#val), [collect](#collect), and [putval](#putval)