Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions DeepLinkKit/Protocols/DPLSerializable.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@

/**
Initializes an object with the provided dictionary representation.
@param An NSDictionary representation of the object to be created.
@param dictionary - a NSDictionary representation of the object to be created.
*/
- (instancetype)initWithDictionary:(NSDictionary *)dictionary;


/**
Updates the receiver with the provided dictionary representation.
@param An NSDictionary representation of the object.
@param dictionary - a NSDictionary representation of the object.
*/
- (void)updateWithRepresentation:(NSDictionary *)dictionary;

Expand Down