Skip to content

Commit

Permalink
minor: fix typo in vignette
Browse files Browse the repository at this point in the history
  • Loading branch information
dfsp-spirit committed Sep 13, 2019
1 parent 0ee627f commit 3844b8a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vignettes/freesurferformats.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -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
```


Expand Down

0 comments on commit 3844b8a

Please sign in to comment.