summaryrefslogtreecommitdiffstats
path: root/examples/Attributes.txt
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2020-05-12 20:38:49 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2020-05-12 20:38:49 (GMT)
commit5b441f84c9a09d216a018c34eb488c241db0a060 (patch)
tree6b3a780a3cbf3db0a058292e301fe4183ce2d3ea /examples/Attributes.txt
parentbf5dde71cbebd94fd7a6f12fc4048a0648f41c5b (diff)
downloadhdf5-5b441f84c9a09d216a018c34eb488c241db0a060.zip
hdf5-5b441f84c9a09d216a018c34eb488c241db0a060.tar.gz
hdf5-5b441f84c9a09d216a018c34eb488c241db0a060.tar.bz2
Whitespace cleanup
Diffstat (limited to 'examples/Attributes.txt')
-rw-r--r--examples/Attributes.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/Attributes.txt b/examples/Attributes.txt
index 0f25f68..6cba42b 100644
--- a/examples/Attributes.txt
+++ b/examples/Attributes.txt
@@ -1,4 +1,4 @@
-Attribute Examples:
+Attribute Examples:
H5Acreate2 example: Show how to create an attribute for a dataset and a group
----------------
@@ -19,7 +19,7 @@ H5Acreate2 example: Show how to create an attribute for a dataset and a group
rank=2;
dimsf[0] = H5S_UNLIMITED;
dimsf[1] = H5S_UNLIMITED;
- dataspace = H5Screate_simple(rank, dimsf, NULL);
+ dataspace = H5Screate_simple(rank, dimsf, NULL);
/* Create a dataset */
dataset = H5Dcreate2(file, "Dataset1", H5T_UINT8, dataspace, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
@@ -122,7 +122,7 @@ H5Alink Example: Shows how to share an attribute between two datasets.
/* Get the OID of the attribute */
attr=H5Aopen(dataset1, "Foo", H5P_DEFAULT);
- /*
+ /*
* Create an attribute in the second dataset to the attribute in dataset1,
* changing the name of the attribute information in dataset2.
*/