diff options
author | Alexander Strizhakov <alex.strizhakov@gmail.com> | 2020-01-22 18:22:54 +0300 |
---|---|---|
committer | Alexander Strizhakov <alex.strizhakov@gmail.com> | 2020-01-22 18:22:54 +0300 |
commit | f3e074e949ce603446728b02ea059efe2a05a841 (patch) | |
tree | 556bab7699422ed0fc0995735602e2f37705154e | |
parent | a9c6f119ac8fb2124241a61b26d97bff207218d8 (diff) | |
download | pleroma-f3e074e949ce603446728b02ea059efe2a05a841.tar.gz |
little fixes
-rw-r--r-- | docs/API/admin_api.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/API/admin_api.md b/docs/API/admin_api.md index 534c49eed..07aa7ec3f 100644 --- a/docs/API/admin_api.md +++ b/docs/API/admin_api.md @@ -722,11 +722,11 @@ Some modifications are necessary to save the config settings correctly: ``` ":pleroma" -> :pleroma ``` -- objects with `tuple` key and array value will be converted to atoms; +- objects with `tuple` key and array value will be converted to tuples; ``` {"tuple": ["string", "Pleroma.Upload", []]} -> {"string", Pleroma.Upload, []} ``` -- arrays with *tuple objects* and 2 childs in array will be converted to keywords; +- arrays with *tuple objects* will be converted to keywords; ``` [{"tuple": [":key1", "value"]}, {"tuple": [":key2", "value"]}] -> [key1: "value", key2: "value"] ``` |