ObjFW  Check-in [4c2dbb263c]

Overview
Comment:Fix two typos in documentation
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 4c2dbb263c3c06d736242f6806a3e0c56c89860a9663e59b50330e8ff7058a16
User & Date: js on 2014-11-16 21:35:25
Other Links: manifest | tags
Context
2014-12-07
18:18
OFHTTPServer: Fix warning on Win64 check-in: 372ed8b399 user: js tags: trunk
2014-11-16
21:35
Fix two typos in documentation check-in: 4c2dbb263c user: js tags: trunk
2014-11-09
18:54
OFProcess: Do all memory allocation before fork() check-in: 30e5c5ea27 user: js tags: trunk
Changes

Modified src/OFHTTPRequest.h from [333d96b64f] to [d185b6a6e4].

171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
 * @brief Sets a dictionary with headers for the HTTP request.
 *
 * @param headers A dictionary with headers for the HTTP request
 */
- (void)setHeaders: (OFDictionary*)headers;

/*!
 * @brief Retrusn a dictionary with headers for the HTTP request.
 *
 * @return A dictionary with headers for the HTTP request.
 */
- (OFDictionary*)headers;

/*!
 * @brief Sets the entity body of the HTTP request.







|







171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
 * @brief Sets a dictionary with headers for the HTTP request.
 *
 * @param headers A dictionary with headers for the HTTP request
 */
- (void)setHeaders: (OFDictionary*)headers;

/*!
 * @brief Returns a dictionary with headers for the HTTP request.
 *
 * @return A dictionary with headers for the HTTP request.
 */
- (OFDictionary*)headers;

/*!
 * @brief Sets the entity body of the HTTP request.

Modified src/OFList.h from [84a91cc02c] to [102c06c2e5].

66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
 * @brief Returns the first list object of the list.
 *
 * @return The first list object of the list
 */
- (of_list_object_t*)firstListObject;

/*!
 * @brief Retrusn the last list object of the list.
 *
 * @return The last list object of the list
 */
- (of_list_object_t*)lastListObject;

/*!
 * @brief Appends an object to the list.







|







66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
 * @brief Returns the first list object of the list.
 *
 * @return The first list object of the list
 */
- (of_list_object_t*)firstListObject;

/*!
 * @brief Returns the last list object of the list.
 *
 * @return The last list object of the list
 */
- (of_list_object_t*)lastListObject;

/*!
 * @brief Appends an object to the list.