Update dicts documentation. (#361)

diff --git a/docs/dicts_doc.md b/docs/dicts_doc.md
index 5e8bce6..9010392 100755
--- a/docs/dicts_doc.md
+++ b/docs/dicts_doc.md
@@ -34,3 +34,49 @@
 A new `dict` that has all the entries of the given dictionaries.
 
 
+<a id="#dicts.omit"></a>
+
+## dicts.omit
+
+<pre>
+dicts.omit(<a href="#dicts.omit-dictionary">dictionary</a>, <a href="#dicts.omit-keys">keys</a>)
+</pre>
+
+Returns a new `dict` that has all the entries of `dictionary` with keys not in `keys`.
+
+**PARAMETERS**
+
+
+| Name  | Description | Default Value |
+| :------------- | :------------- | :------------- |
+| <a id="dicts.omit-dictionary"></a>dictionary |  A <code>dict</code>.   |  none |
+| <a id="dicts.omit-keys"></a>keys |  A sequence.   |  none |
+
+**RETURNS**
+
+A new `dict` that has all the entries of `dictionary` with keys not in `keys`.
+
+
+<a id="#dicts.pick"></a>
+
+## dicts.pick
+
+<pre>
+dicts.pick(<a href="#dicts.pick-dictionary">dictionary</a>, <a href="#dicts.pick-keys">keys</a>)
+</pre>
+
+Returns a new `dict` that has all the entries of `dictionary` with keys in `keys`.
+
+**PARAMETERS**
+
+
+| Name  | Description | Default Value |
+| :------------- | :------------- | :------------- |
+| <a id="dicts.pick-dictionary"></a>dictionary |  A <code>dict</code>.   |  none |
+| <a id="dicts.pick-keys"></a>keys |  A sequence.   |  none |
+
+**RETURNS**
+
+A new `dict` that has all the entries of `dictionary` with keys in `keys`.
+
+