summaryrefslogtreecommitdiffstats
path: root/src/H5FDmulti.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5FDmulti.h')
-rw-r--r--src/H5FDmulti.h11
1 files changed, 4 insertions, 7 deletions
diff --git a/src/H5FDmulti.h b/src/H5FDmulti.h
index e5975d3..23c3703 100644
--- a/src/H5FDmulti.h
+++ b/src/H5FDmulti.h
@@ -11,9 +11,6 @@
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/*
- * Programmer: Robb Matzke
- * Monday, August 2, 1999
- *
* Purpose: The public header file for the "multi" driver.
*/
#ifndef H5FDmulti_H
@@ -226,17 +223,17 @@ H5_DLL herr_t H5Pget_fapl_multi(hid_t fapl_id, H5FD_mem_t *memb_map /*out*/, hid
*
* \par Example:
* \code
- * // Example 1: Both metadata and rawdata files are in the same
+ * // Example 1: Both metadata and raw data files are in the same
* // directory. Use Station1-m.h5 and Station1-r.h5 as
- * // the metadata and rawdata files.
+ * // the metadata and raw data files.
* hid_t fapl, fid;
* fapl = H5Pcreate(H5P_FILE_ACCESS);
* H5Pset_fapl_split(fapl, "-m.h5", H5P_DEFAULT, "-r.h5", H5P_DEFAULT);
* fid=H5Fcreate("Station1",H5F_ACC_TRUNC,H5P_DEFAULT,fapl);
*
- * // Example 2: metadata and rawdata files are in different
+ * // Example 2: metadata and raw data files are in different
* // directories. Use PointA-m.h5 and /pfs/PointA-r.h5 as
- * // the metadata and rawdata files.
+ * // the metadata and raw data files.
* hid_t fapl, fid;
* fapl = H5Pcreate(H5P_FILE_ACCESS);
* H5Pset_fapl_split(fapl, "-m.h5", H5P_DEFAULT, "/pfs/%s-r.h5", H5P_DEFAULT);