D wrapper around (some) of the pixiv web API
Révision | 865763cd799840a163bac6cdb5689b644216ff11 (tree) |
---|---|
l'heure | 2023-01-21 15:51:04 |
Auteur | supercell <stigma@disr...> |
Commiter | supercell |
Fix some documentation
@@ -55,7 +55,7 @@ public: | ||
55 | 55 | * with. |
56 | 56 | * |
57 | 57 | * Params: |
58 | - * - phpsessid The PHPSESSID Cookie from a Web Browser. | |
58 | + * phpsessid = The PHPSESSID Cookie from a Web Browser. | |
59 | 59 | */ |
60 | 60 | this(string phpsessid) |
61 | 61 | { |
@@ -287,7 +287,7 @@ public: | ||
287 | 287 | * Params: |
288 | 288 | * offset = [in] The number of accounts to offset the retrieval by |
289 | 289 | * limit = [in] Limit the number of accounts returned |
290 | - * show = [in] Whether to retrieve public ("show"), or private ("hide") followings. | |
290 | + * rest = [in] Whether to retrieve public ("show"), or private ("hide") followings. | |
291 | 291 | * Returns: An array of `User`. |
292 | 292 | */ |
293 | 293 | User[] fetchFollowing(int offset, int limit = 24, string rest = "show") |
@@ -306,7 +306,7 @@ public: | ||
306 | 306 | * offset = The number of accounts to offset the retrieval by. |
307 | 307 | * totalNumberOfAccounts = [out] The total number of accounts the user follows (depends on `rest`). |
308 | 308 | * limit = Limit the number of accounts returned (default 24). |
309 | - * show = [in] Whether to retrieve public ("show"), or private ("hide") followings. | |
309 | + * rest = [in] Whether to retrieve public ("show"), or private ("hide") followings. | |
310 | 310 | */ |
311 | 311 | User[] fetchFollowing(in int offset, out long totalNumberOfAccounts, in int limit = 24, in string rest = "show") |
312 | 312 | { |