From 9ba4e6cd9c0263faa9d2fa20a91ca65644b3afc4 Mon Sep 17 00:00:00 2001 From: Shyam Saladi Date: Thu, 15 Dec 2016 18:16:48 -0800 Subject: [PATCH] fixed typo --- doc/source/io.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/io.rst b/doc/source/io.rst index 17c7653072526..945b738e52480 100644 --- a/doc/source/io.rst +++ b/doc/source/io.rst @@ -4004,7 +4004,7 @@ and data values from the values and assembles them into a ``data.frame``: name_paths = paste(listing$group[name_nodes], listing$name[name_nodes], sep = "/") columns = list() for (idx in seq(data_paths)) { - # NOTE: matrices returned by h5read have to be transposed to to obtain + # NOTE: matrices returned by h5read have to be transposed to obtain # required Fortran order! data <- data.frame(t(h5read(h5File, data_paths[idx]))) names <- t(h5read(h5File, name_paths[idx]))