From ae128f594fd02c05ae5ace6c6ad630b57cd73b2a Mon Sep 17 00:00:00 2001 From: Rickard Andersson Date: Wed, 26 May 2021 17:18:24 +0300 Subject: [PATCH] modify wording of ex3 on partial pipes --- basics/01-values-and-functions.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/basics/01-values-and-functions.md b/basics/01-values-and-functions.md index 3e4155d..bc20f34 100644 --- a/basics/01-values-and-functions.md +++ b/basics/01-values-and-functions.md @@ -716,8 +716,8 @@ solution upperBound divisors = beginning of the list[2], multiplies them all by two, sums them up and returns whether or not the sum is even. Create a version that uses a named argument and one that does not. -3. Define a function using a pipeline that takes a list of strings, takes out all the strings - beginning with "#", then discards all leading "#" or " " from the resulting strings. +3. Define a function using a pipeline that takes a list of strings, takes all the strings beginning + with "#", then discards all leading "#" or " " from the resulting strings. #### Exercise notes (Pipelines using partial application)