Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
an
  • Loading branch information
bparrishMines committed Apr 23, 2022
commit fa5dbebc612b3196f6e777a63d04204324e8bef7
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
NS_ASSUME_NONNULL_BEGIN

/**
* Converts a FWFNSUrlRequestData to a NSURLRequest.
* Converts an FWFNSUrlRequestData to an NSURLRequest.
*
* @param data The data object containing information to create an NSURLRequest.
*
* @return A NSURLRequest or nil if data could not be converted.
* @return An NSURLRequest or nil if data could not be converted.
*/
id FWFConvertURLRequestData(FWFNSUrlRequestData* data);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I generally suggest following Apple's Obj-C-ish C function naming convention of naming the returned type for things like this (e.g., NSRectFromCGRect rather than ConvertCGRect), so FWFNSURLRequestFromRequestData.


Expand Down