aboutsummaryrefslogtreecommitdiff
path: root/docs/dicts_doc.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/dicts_doc.md')
-rwxr-xr-xdocs/dicts_doc.md45
1 files changed, 17 insertions, 28 deletions
diff --git a/docs/dicts_doc.md b/docs/dicts_doc.md
index 2e95cf8..5e8bce6 100755
--- a/docs/dicts_doc.md
+++ b/docs/dicts_doc.md
@@ -1,3 +1,9 @@
+<!-- Generated with Stardoc: http://skydoc.bazel.build -->
+
+Skylib module containing functions that operate on dictionaries.
+
+<a id="#dicts.add"></a>
+
## dicts.add
<pre>
@@ -15,33 +21,16 @@ special cases for their inputs: the sum of zero dictionaries is the empty
dictionary, and the sum of a single dictionary is a copy of itself.
-### Parameters
-
-<table class="params-table">
- <colgroup>
- <col class="col-param" />
- <col class="col-description" />
- </colgroup>
- <tbody>
- <tr id="dicts.add-dictionaries">
- <td><code>dictionaries</code></td>
- <td>
- optional.
- <p>
- Zero or more dictionaries to be added.
- </p>
- </td>
- </tr>
- <tr id="dicts.add-kwargs">
- <td><code>kwargs</code></td>
- <td>
- optional.
- <p>
- Additional dictionary passed as keyword args.
- </p>
- </td>
- </tr>
- </tbody>
-</table>
+**PARAMETERS**
+
+
+| Name | Description | Default Value |
+| :------------- | :------------- | :------------- |
+| <a id="dicts.add-dictionaries"></a>dictionaries | Zero or more dictionaries to be added. | none |
+| <a id="dicts.add-kwargs"></a>kwargs | Additional dictionary passed as keyword args. | none |
+
+**RETURNS**
+
+A new `dict` that has all the entries of the given dictionaries.