From 6adb97528250296c2f148a190597fcaa0641d51e Mon Sep 17 00:00:00 2001 From: Frank Baker Date: Fri, 16 Apr 1999 10:31:54 -0500 Subject: [svn-r1188] Attributes.html Minor copy edits. --- doc/html/Attributes.html | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/doc/html/Attributes.html b/doc/html/Attributes.html index fd917ca..b50b95a 100644 --- a/doc/html/Attributes.html +++ b/doc/html/Attributes.html @@ -71,10 +71,10 @@ And in this document, the

1. Introduction

-

The appribute API (H5A) is primarily designed to easily allow small +

The attribute API (H5A) is primarily designed to easily allow small datasets to be attached to primary datasets as metadata information. Additional goals for the H5A interface include keeping storage - requirement for each attribute to a minimum and easily sharing + requirements for each attribute to a minimum and easily sharing attributes among datasets.

Because attributes are intended to be small objects, large datasets intended as additional information for a primary dataset should be @@ -83,7 +83,7 @@ And in this document, the indicate a particular type of dataset with supplemental datasets is located in the group. How small is "small" is not defined by the library and is up to the user's interpretation. -

Attributes are not seperate objects in the file, they are always +

Attributes are not separate objects in the file, they are always contained in the object header of the object they are attached to. The I/O functions defined below are required to read or write attribute information, not the H5D I/O routines. @@ -106,12 +106,12 @@ And in this document, the and space_id are created with the H5T and H5S interfaces respectively. Currently only simple dataspaces are allowed for attribute dataspaces. The create_plist_id property list is currently - unused, but will be used int the future for optional properties of + unused, but will be used in the future for optional properties of attributes. The attribute ID returned from this function must be released with H5Aclose or resource leaks will develop. Attempting to create an attribute with the same name as an already existing attribute will fail, leaving the pre-existing attribute in place. - This function returns a attribute ID for success or negative for failure. + This function returns an attribute ID for success or negative for failure.

hid_t H5Aopen_name (hid_t loc_id, const char @@ -120,7 +120,7 @@ And in this document, the specified with loc_id. The name specified with name indicates the attribute to access. The attribute ID returned from this function must be released with H5Aclose or resource leaks will develop. - This function returns a attribute ID for success or negative for failure. + This function returns an attribute ID for success or negative for failure.

hid_t H5Aopen_idx (hid_t loc_id, unsigned @@ -130,7 +130,7 @@ And in this document, the indicates the idxth attribute to access, starting with '0'. The attribute ID returned from this function must be released with H5Aclose or resource leaks will develop. - This function returns a attribute ID for success or negative for failure. + This function returns an attribute ID for success or negative for failure.

herr_t H5Aclose (hid_t attr_id) @@ -178,7 +178,7 @@ And in this document, the unsigned *attr_number, H5A_operator operator, void *operator_data) -
This function interates over the attributes of dataset or group +
This function iterates over the attributes of the dataset or group specified with loc_id. For each attribute of the object, the operator_data and some additional information (specified below) are passed to the operator function. The iteration begins with -- cgit v0.12