Skip to content

Commit 53e906b

Browse files
committed
[docs] Minor typo
1 parent 62bb4e0 commit 53e906b

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

docs/api/all.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@
262262
<span class="comment">// -> true</span>
263263
console<span class="punctuation">.</span><span class="function">log</span><span class="punctuation">(</span>store<span class="punctuation">.</span><span class="function"><a href="#/api/store/interfaces/store/store/methods/getter/hasvalue/">hasValue</a></span><span class="punctuation">(</span><span class="string">'employees'</span><span class="punctuation">)</span><span class="punctuation">)</span><span class="punctuation">;</span>
264264
<span class="comment">// -> false</span>
265-
</code></pre></section><section class="s7"><h6>Since</h6><p>v3.0.0</p></section></section><section class="s6" id="/api/store/interfaces/store/store/methods/getter/hasvalues/" data-id="hV2"><h6><code>hasValues</code></h6><p>The <a href="#/api/store/interfaces/store/store/methods/getter/hastables/"><code>hasTables</code></a> method returns a boolean indicating whether any <a href="#/api/store/type-aliases/store/values/"><code>Values</code></a> exist in the <a href="#/api/store/interfaces/store/store/"><code>Store</code></a>.</p><pre><code><span class="function"><a href="#/api/store/interfaces/store/store/methods/getter/hasvalues/">hasValues</a></span><span class="punctuation">(</span><span class="punctuation">)</span><span class="operator">:</span> <span class="builtin">boolean</span></code></pre><div class="table"><table><tr><th class="right">returns</th><td><code><span class="builtin">boolean</span></code></td><td><p></p><p>Whether any <a href="#/api/store/type-aliases/store/values/"><code>Values</code></a> exist.</p><p></p></td></tr></table></div><section class="s7"><h6>Example</h6><p>This example shows simple existence checks.</p><pre><code><span class="keyword">const</span> store <span class="operator">=</span> <span class="function"><a href="#/api/store/functions/creation/createstore/">createStore</a></span><span class="punctuation">(</span><span class="punctuation">)</span><span class="punctuation">;</span>
265+
</code></pre></section><section class="s7"><h6>Since</h6><p>v3.0.0</p></section></section><section class="s6" id="/api/store/interfaces/store/store/methods/getter/hasvalues/" data-id="hV2"><h6><code>hasValues</code></h6><p>The <code>hasValues</code> method returns a boolean indicating whether any <a href="#/api/store/type-aliases/store/values/"><code>Values</code></a> exist in the <a href="#/api/store/interfaces/store/store/"><code>Store</code></a>.</p><pre><code><span class="function"><a href="#/api/store/interfaces/store/store/methods/getter/hasvalues/">hasValues</a></span><span class="punctuation">(</span><span class="punctuation">)</span><span class="operator">:</span> <span class="builtin">boolean</span></code></pre><div class="table"><table><tr><th class="right">returns</th><td><code><span class="builtin">boolean</span></code></td><td><p></p><p>Whether any <a href="#/api/store/type-aliases/store/values/"><code>Values</code></a> exist.</p><p></p></td></tr></table></div><section class="s7"><h6>Example</h6><p>This example shows simple existence checks.</p><pre><code><span class="keyword">const</span> store <span class="operator">=</span> <span class="function"><a href="#/api/store/functions/creation/createstore/">createStore</a></span><span class="punctuation">(</span><span class="punctuation">)</span><span class="punctuation">;</span>
266266
console<span class="punctuation">.</span><span class="function">log</span><span class="punctuation">(</span>store<span class="punctuation">.</span><span class="function"><a href="#/api/store/interfaces/store/store/methods/getter/hasvalues/">hasValues</a></span><span class="punctuation">(</span><span class="punctuation">)</span><span class="punctuation">)</span><span class="punctuation">;</span>
267267
<span class="comment">// -> false</span>
268268
store<span class="punctuation">.</span><span class="function"><a href="#/api/store/interfaces/store/store/methods/setter/setvalues/">setValues</a></span><span class="punctuation">(</span><span class="punctuation">{</span><span class="literal-property">open</span><span class="operator">:</span> <span class="boolean">true</span><span class="punctuation">}</span><span class="punctuation">)</span><span class="punctuation">;</span>

docs/api/store/interfaces/store/store/methods/getter/article.html

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

docs/api/store/interfaces/store/store/methods/getter/hasvalues/article.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<nav><ul><li><a href="/">TinyBase</a></li><li><a href="/api/">API</a></li><li><a href="/api/store/"><code>store</code></a></li><li><a href="/api/store/interfaces/">Interfaces</a></li><li><a href="/api/store/interfaces/store/store/"><code>Store</code></a></li><li><a href="/api/store/interfaces/store/store/methods/getter/">Getter methods</a></li><li><a href="/api/store/interfaces/store/store/methods/getter/hasvalues/"><code>hasValues</code></a></li></ul></nav><section class="s1" id="/api/store/interfaces/store/store/methods/getter/hasvalues/" data-id="hV2"><h1><code>hasValues</code></h1><p>The <a href="/api/store/interfaces/store/store/methods/getter/hastables/"><code>hasTables</code></a> method returns a boolean indicating whether any <a href="/api/store/type-aliases/store/values/"><code>Values</code></a> exist in the <a href="/api/store/interfaces/store/store/"><code>Store</code></a>.</p><pre><code><span class="function"><a href="/api/store/interfaces/store/store/methods/getter/hasvalues/">hasValues</a></span><span class="punctuation">(</span><span class="punctuation">)</span><span class="operator">:</span> <span class="builtin">boolean</span></code></pre><div class="table"><table><tr><th class="right">returns</th><td><code><span class="builtin">boolean</span></code></td><td><p></p><p>Whether any <a href="/api/store/type-aliases/store/values/"><code>Values</code></a> exist.</p><p></p></td></tr></table></div><section class="s2"><h2>Example</h2><p>This example shows simple existence checks.</p><pre><code><span class="keyword">const</span> store <span class="operator">=</span> <span class="function"><a href="/api/store/functions/creation/createstore/">createStore</a></span><span class="punctuation">(</span><span class="punctuation">)</span><span class="punctuation">;</span>
1+
<nav><ul><li><a href="/">TinyBase</a></li><li><a href="/api/">API</a></li><li><a href="/api/store/"><code>store</code></a></li><li><a href="/api/store/interfaces/">Interfaces</a></li><li><a href="/api/store/interfaces/store/store/"><code>Store</code></a></li><li><a href="/api/store/interfaces/store/store/methods/getter/">Getter methods</a></li><li><a href="/api/store/interfaces/store/store/methods/getter/hasvalues/"><code>hasValues</code></a></li></ul></nav><section class="s1" id="/api/store/interfaces/store/store/methods/getter/hasvalues/" data-id="hV2"><h1><code>hasValues</code></h1><p>The <code>hasValues</code> method returns a boolean indicating whether any <a href="/api/store/type-aliases/store/values/"><code>Values</code></a> exist in the <a href="/api/store/interfaces/store/store/"><code>Store</code></a>.</p><pre><code><span class="function"><a href="/api/store/interfaces/store/store/methods/getter/hasvalues/">hasValues</a></span><span class="punctuation">(</span><span class="punctuation">)</span><span class="operator">:</span> <span class="builtin">boolean</span></code></pre><div class="table"><table><tr><th class="right">returns</th><td><code><span class="builtin">boolean</span></code></td><td><p></p><p>Whether any <a href="/api/store/type-aliases/store/values/"><code>Values</code></a> exist.</p><p></p></td></tr></table></div><section class="s2"><h2>Example</h2><p>This example shows simple existence checks.</p><pre><code><span class="keyword">const</span> store <span class="operator">=</span> <span class="function"><a href="/api/store/functions/creation/createstore/">createStore</a></span><span class="punctuation">(</span><span class="punctuation">)</span><span class="punctuation">;</span>
22
console<span class="punctuation">.</span><span class="function">log</span><span class="punctuation">(</span>store<span class="punctuation">.</span><span class="function"><a href="/api/store/interfaces/store/store/methods/getter/hasvalues/">hasValues</a></span><span class="punctuation">(</span><span class="punctuation">)</span><span class="punctuation">)</span><span class="punctuation">;</span>
33
<span class="comment">// -> false</span>
44
store<span class="punctuation">.</span><span class="function"><a href="/api/store/interfaces/store/store/methods/setter/setvalues/">setValues</a></span><span class="punctuation">(</span><span class="punctuation">{</span><span class="literal-property">open</span><span class="operator">:</span> <span class="boolean">true</span><span class="punctuation">}</span><span class="punctuation">)</span><span class="punctuation">;</span>

0 commit comments

Comments
 (0)