From 3844b8a3486b2fa28950c6ea30576595bde86963 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20Sch=C3=A4fer?= Date: Fri, 13 Sep 2019 12:12:29 +0200 Subject: [PATCH] minor: fix typo in vignette --- vignettes/freesurferformats.Rmd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vignettes/freesurferformats.Rmd b/vignettes/freesurferformats.Rmd index ffd09c5..7aefa31 100644 --- a/vignettes/freesurferformats.Rmd +++ b/vignettes/freesurferformats.Rmd @@ -43,8 +43,8 @@ To access not only the volume data, but also the header, call `read.fs.mgh` like ```{r} brain_with_hdr = read.fs.mgh(mgh_file, with_header = TRUE); - brain = brain_with_hdr$data; # as seen before, this is what we got in the last example. - header = brain_with_hdr$header; # as seen before, this is what we got in the last example. + brain = brain_with_hdr$data; # as seen before, this is what we got in the last example (the data). + header = brain_with_hdr$header; # the header ```