From c74fc2b1c1ee2ce35beca9169ff587a717e542ae Mon Sep 17 00:00:00 2001 From: maneesha sane <829690+maneesha@users.noreply.github.com> Date: Wed, 22 Nov 2023 09:44:10 -0500 Subject: [PATCH 1/2] fix broken link to Working with Data --- episodes/11-using-arrays-transformations.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/episodes/11-using-arrays-transformations.md b/episodes/11-using-arrays-transformations.md index 625e2344..4771b5a7 100644 --- a/episodes/11-using-arrays-transformations.md +++ b/episodes/11-using-arrays-transformations.md @@ -62,8 +62,7 @@ Arrays can be sorted, de-duplicated, and manipulated in other ways in GREL expre `"crystal structure|clozapinium|crystal structure|molecular configuration|hydrogen bonding|supramolecular assembly|Chemistry|QD1-999"` -This can be transformed into an array using the `split` function specifying the pipe character ( | ) as the separating character. Recall the cautionary note about separator choice from [Working with Data](https://librarycarpentry.org/lc-open-refine/03-working-with-data/index.html). -. +This can be transformed into an array using the `split` function specifying the pipe character ( | ) as the separating character. Recall the cautionary note about separator choice from [Working with Data](https://librarycarpentry.org/lc-open-refine/03-working-with-data). ``` value.split("|") From 0db721ef2643efa0b8cc8004f5b8f24cdf709c9f Mon Sep 17 00:00:00 2001 From: Jennifer Stubbs <52942431+jas58@users.noreply.github.com> Date: Fri, 15 Dec 2023 09:31:14 -0600 Subject: [PATCH 2/2] Update 11-using-arrays-transformations.md Updated line 65 to md version and specific moment in lesson 03-working-with-data.md#choosing-a-good-separator --- episodes/11-using-arrays-transformations.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/episodes/11-using-arrays-transformations.md b/episodes/11-using-arrays-transformations.md index 4771b5a7..746eb3a4 100644 --- a/episodes/11-using-arrays-transformations.md +++ b/episodes/11-using-arrays-transformations.md @@ -62,7 +62,7 @@ Arrays can be sorted, de-duplicated, and manipulated in other ways in GREL expre `"crystal structure|clozapinium|crystal structure|molecular configuration|hydrogen bonding|supramolecular assembly|Chemistry|QD1-999"` -This can be transformed into an array using the `split` function specifying the pipe character ( | ) as the separating character. Recall the cautionary note about separator choice from [Working with Data](https://librarycarpentry.org/lc-open-refine/03-working-with-data). +This can be transformed into an array using the `split` function specifying the pipe character ( | ) as the separating character. Recall the cautionary note about separator choice from [Working with Data](03-working-with-data.md#choosing-a-good-separator). ``` value.split("|")