X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/924aa408b99837036b679bd3895f836af6bc763f..6e0e5bedd9c3a4bf0f53f43c427c88e2866bda0a:/doc/TypeCommand.html

diff --git a/doc/TypeCommand.html b/doc/TypeCommand.html
index 3d30a991..45900422 100644
--- a/doc/TypeCommand.html
+++ b/doc/TypeCommand.html
@@ -26,13 +26,15 @@
                 </div>
 
                 <div class="narrow">
-                    <h1><a name="TYPE _key_">TYPE _key_</a></h1>
+                    &iuml;&raquo;&iquest;#sidebar <a href="GenericCommandsSidebar.html">GenericCommandsSidebar</a><h1><a name="TYPE _key_">TYPE _key_</a></h1>
 <i>Time complexity: O(1)</i><blockquote>Return the type of the value stored at <i>key</i> in form of astring. The type can be one of &quot;none&quot;, &quot;string&quot;, &quot;list&quot;, &quot;set&quot;.&quot;none&quot; is returned if the key does not exist.</blockquote>
 <h2><a name="Return value">Return value</a></h2><a href="ReplyTypes.html">Status code reply</a>, specifically:<br/><br/><pre class="codeblock python" name="code">
 &quot;none&quot; if the key does not exist
 &quot;string&quot; if the key contains a String value
 &quot;list&quot; if the key contains a List value
 &quot;set&quot; if the key contains a Set value
+&quot;zset&quot; if the key contains a Sorted Set value
+&quot;hash&quot; if the key contains a Hash value
 </pre><h2><a name="See also">See also</a></h2>
 <ul><li> <a href="DataTypes.html">Redis Data Types</a></li></ul>
                 </div>