• R/O
  • HTTP
  • SSH
  • HTTPS

提交

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

D wrapper around (some) of the pixiv web API


Commit MetaInfo

修訂865763cd799840a163bac6cdb5689b644216ff11 (tree)
時間2023-01-21 15:51:04
作者supercell <stigma@disr...>
Commitersupercell

Log Message

Fix some documentation

Change Summary

差異

--- a/source/pixivd/client.d
+++ b/source/pixivd/client.d
@@ -55,7 +55,7 @@ public:
5555 * with.
5656 *
5757 * Params:
58- * - phpsessid The PHPSESSID Cookie from a Web Browser.
58+ * phpsessid = The PHPSESSID Cookie from a Web Browser.
5959 */
6060 this(string phpsessid)
6161 {
@@ -287,7 +287,7 @@ public:
287287 * Params:
288288 * offset = [in] The number of accounts to offset the retrieval by
289289 * 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.
291291 * Returns: An array of `User`.
292292 */
293293 User[] fetchFollowing(int offset, int limit = 24, string rest = "show")
@@ -306,7 +306,7 @@ public:
306306 * offset = The number of accounts to offset the retrieval by.
307307 * totalNumberOfAccounts = [out] The total number of accounts the user follows (depends on `rest`).
308308 * 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.
310310 */
311311 User[] fetchFollowing(in int offset, out long totalNumberOfAccounts, in int limit = 24, in string rest = "show")
312312 {