From 71a614f45fb197018f7eb454eacfb89b56a14928 Mon Sep 17 00:00:00 2001 From: Yaroslav Halchenko Date: Sun, 16 Jul 2023 18:28:06 -0400 Subject: [PATCH] Consistently no trailing period in full sentence items? --- _episodes/04-dataset-management.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/_episodes/04-dataset-management.md b/_episodes/04-dataset-management.md index 66011af..436e3a7 100644 --- a/_episodes/04-dataset-management.md +++ b/_episodes/04-dataset-management.md @@ -12,7 +12,7 @@ objectives: - Create a simple model of a nested dataset keypoints: - A dataset can contain other datasets -- The super- and sub-datasets have separate histories. +- The super- and sub-datasets have separate histories - The superdataset only contains a reference to a specific commit in the subdataset's history --- @@ -380,14 +380,14 @@ At this stage, our superdataset stores the reference to a populated inputs datas > ## Separate history > -> - The super- and sub-datasets have separate histories. +> - The super- and sub-datasets have separate histories > - The superdataset only contains a reference to a specific commit in the subdataset's history > - If the subdataset evolves, the reference in the superdataset can be updated (this has to be done explicitly) > > ## Installing subdatasets > -> - Usually, you would install an already existing dataset as a subdataset with `datalad clone -d . ...` rather than create it from scratch like we just did. -> - The end effect would be the same, with the parent dataset pointing at the specific state of the subdataset. +> - Usually, you would install an already existing dataset as a subdataset with `datalad clone -d . ...` rather than create it from scratch like we just did +> - The end effect would be the same, with the parent dataset pointing at the specific state of the subdataset > {: .callout}