lib/vendor/Firebase.framework/Versions/A/Headers/FDataSnapshot.h in motion-firebase-1.0.9 vs lib/vendor/Firebase.framework/Versions/A/Headers/FDataSnapshot.h in motion-firebase-1.0.10

- old
+ new

@@ -29,11 +29,11 @@ #import <Foundation/Foundation.h> @class Firebase; /** - * An FDataSnapshot contains data from a Firebase location. Any time you read + * An FDataSnapshot contains data from a Firebase location. Any time you read * Firebase data, you receive the data as an FDataSnapshot. * * FDataSnapshots are passed to the blocks you attach with observeEventType:withBlock: or observeSingleEvent:withBlock:. * They are efficiently-generated immutable copies of the data at a Firebase location. * They can't be modified and will never change. To modify data at a location, @@ -44,11 +44,11 @@ /** @name Navigating and inspecting a snapshot */ /** * Get an FDataSnapshot for the location at the specified relative path. - * The relative path can either be a simple child name (e.g. 'fred') + * The relative path can either be a simple child name (e.g. 'fred') * or a deeper slash-separated path (e.g. 'fred/name/first'). If the child * location has no data, an empty FDataSnapshot is returned. * * @param childPathString A relative path to the location of child data. * @return The FDataSnapshot for the child location. @@ -65,21 +65,21 @@ - (BOOL) hasChild:(NSString *)childPathString; /** * Return YES if the DataSnapshot has any children. - * + * * @return YES if this snapshot has any children, else NO. */ - (BOOL) hasChildren; /** @name Data export */ /** * Returns the raw value at this location, coupled with any metadata, such as priority. * - * Priorities, where they exist, are accessible under the ".priority" key in instances of NSDictionary. + * Priorities, where they exist, are accessible under the ".priority" key in instances of NSDictionary. * For leaf locations with priorities, the value will be under the ".value" key. */ - (id) valueInExportFormat;