Skip to content

Commit

Permalink
deploy: 418bcf1
Browse files Browse the repository at this point in the history
  • Loading branch information
damirka committed Aug 27, 2024
1 parent d4275b1 commit 7462dc2
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion concepts/what-is-a-transaction.html
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ <h2 id="inputs"><a class="header" href="#inputs">Inputs</a></h2>
extra additions. A pure argument can be:
<ul>
<li><a href="../move-basics/primitive-types.html#booleans"><code>bool</code></a>.</li>
<li><a href="../move-basics/primitive-types.html#integers">integer</a> (<code>u8</code>, <code>u16</code>, <code>u32</code>, <code>u64</code>, <code>u128</code>, <code>u256</code>).</li>
<li><a href="../move-basics/primitive-types.html#integer-types">unsigned integer</a> (<code>u8</code>, <code>u16</code>, <code>u32</code>, <code>u64</code>, <code>u128</code>, <code>u256</code>).</li>
<li><a href="../move-basics/address.html"><code>address</code></a>.</li>
<li><a href="../move-basics/string.html"><code>std::string::String</code></a>, UTF8 strings.</li>
<li><a href="../move-basics/string.html#ascii-strings"><code>std::ascii::String</code></a>, ASCII strings.</li>
Expand Down
2 changes: 1 addition & 1 deletion move-basics/copy-ability.html
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ <h2 id="types-with-the-copy-ability"><a class="header" href="#types-with-the-cop
<p>All native types in Move have the <code>copy</code> ability. This includes:</p>
<ul>
<li><a href="./../move-basics/primitive-types.html#booleans">bool</a></li>
<li><a href="./../move-basics/primitive-types.html#integers">unsigned integers</a></li>
<li><a href="./../move-basics/primitive-types.html#integer-types">unsigned integers</a></li>
<li><a href="./../move-basics/vector.html">vector</a></li>
<li><a href="./../move-basics/address.html">address</a></li>
</ul>
Expand Down
2 changes: 1 addition & 1 deletion move-basics/drop-ability.html
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ <h2 id="types-with-the-drop-ability"><a class="header" href="#types-with-the-dro
<p>All native types in Move have the <code>drop</code> ability. This includes:</p>
<ul>
<li><a href="./../move-basics/primitive-types.html#booleans">bool</a></li>
<li><a href="./../move-basics/primitive-types.html#integers">unsigned integers</a></li>
<li><a href="./../move-basics/primitive-types.html#integer-types">unsigned integers</a></li>
<li><a href="./../move-basics/vector.html">vector</a></li>
<li><a href="./../move-basics/address.html">address</a></li>
</ul>
Expand Down
2 changes: 1 addition & 1 deletion move-basics/primitive-types.html
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ <h1 id="primitive-types"><a class="header" href="#primitive-types">Primitive Typ
other types. The primitive types are:</p>
<ul>
<li><a href="#booleans">Booleans</a></li>
<li><a href="#integers">Unsigned Integers</a></li>
<li><a href="#integer-types">Unsigned Integers</a></li>
<li><a href="./address.html">Address</a> - covered in the next section</li>
</ul>
<p>However, before we get to the types, let's first look at how to declare and assign variables in
Expand Down
10 changes: 5 additions & 5 deletions print.html
Original file line number Diff line number Diff line change
Expand Up @@ -1460,7 +1460,7 @@ <h2 id="inputs"><a class="header" href="#inputs">Inputs</a></h2>
extra additions. A pure argument can be:
<ul>
<li><a href="concepts/../move-basics/primitive-types.html#booleans"><code>bool</code></a>.</li>
<li><a href="concepts/../move-basics/primitive-types.html#integers">integer</a> (<code>u8</code>, <code>u16</code>, <code>u32</code>, <code>u64</code>, <code>u128</code>, <code>u256</code>).</li>
<li><a href="concepts/../move-basics/primitive-types.html#integer-types">unsigned integer</a> (<code>u8</code>, <code>u16</code>, <code>u32</code>, <code>u64</code>, <code>u128</code>, <code>u256</code>).</li>
<li><a href="concepts/../move-basics/address.html"><code>address</code></a>.</li>
<li><a href="concepts/../move-basics/string.html"><code>std::string::String</code></a>, UTF8 strings.</li>
<li><a href="concepts/../move-basics/string.html#ascii-strings"><code>std::ascii::String</code></a>, ASCII strings.</li>
Expand Down Expand Up @@ -1683,7 +1683,7 @@ <h2 id="doc-comment"><a class="header" href="#doc-comment">Doc comment</a></h2>
other types. The primitive types are:</p>
<ul>
<li><a href="move-basics/primitive-types.html#booleans">Booleans</a></li>
<li><a href="move-basics/primitive-types.html#integers">Unsigned Integers</a></li>
<li><a href="move-basics/primitive-types.html#integer-types">Unsigned Integers</a></li>
<li><a href="move-basics/./address.html">Address</a> - covered in the next section</li>
</ul>
<p>However, before we get to the types, let's first look at how to declare and assign variables in
Expand Down Expand Up @@ -2171,7 +2171,7 @@ <h2 id="types-with-the-drop-ability"><a class="header" href="#types-with-the-dro
<p>All native types in Move have the <code>drop</code> ability. This includes:</p>
<ul>
<li><a href="move-basics/./../move-basics/primitive-types.html#booleans">bool</a></li>
<li><a href="move-basics/./../move-basics/primitive-types.html#integers">unsigned integers</a></li>
<li><a href="move-basics/./../move-basics/primitive-types.html#integer-types">unsigned integers</a></li>
<li><a href="move-basics/./../move-basics/vector.html">vector</a></li>
<li><a href="move-basics/./../move-basics/address.html">address</a></li>
</ul>
Expand Down Expand Up @@ -3475,7 +3475,7 @@ <h2 id="types-with-the-copy-ability"><a class="header" href="#types-with-the-cop
<p>All native types in Move have the <code>copy</code> ability. This includes:</p>
<ul>
<li><a href="move-basics/./../move-basics/primitive-types.html#booleans">bool</a></li>
<li><a href="move-basics/./../move-basics/primitive-types.html#integers">unsigned integers</a></li>
<li><a href="move-basics/./../move-basics/primitive-types.html#integer-types">unsigned integers</a></li>
<li><a href="move-basics/./../move-basics/vector.html">vector</a></li>
<li><a href="move-basics/./../move-basics/address.html">address</a></li>
</ul>
Expand Down Expand Up @@ -4538,7 +4538,7 @@ <h2 id="types-with-the-store-ability"><a class="header" href="#types-with-the-st
<p>All native types (except for references) in Move have the <code>store</code> ability. This includes:</p>
<ul>
<li><a href="storage/./../move-basics/primitive-types.html#booleans">bool</a></li>
<li><a href="storage/./../move-basics/primitive-types.html#integers">unsigned integers</a></li>
<li><a href="storage/./../move-basics/primitive-types.html#integer-types">unsigned integers</a></li>
<li><a href="storage/./../move-basics/vector.html">vector</a></li>
<li><a href="storage/./../move-basics/address.html">address</a></li>
</ul>
Expand Down
2 changes: 1 addition & 1 deletion searchindex.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion searchindex.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion storage/store-ability.html
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ <h2 id="types-with-the-store-ability"><a class="header" href="#types-with-the-st
<p>All native types (except for references) in Move have the <code>store</code> ability. This includes:</p>
<ul>
<li><a href="./../move-basics/primitive-types.html#booleans">bool</a></li>
<li><a href="./../move-basics/primitive-types.html#integers">unsigned integers</a></li>
<li><a href="./../move-basics/primitive-types.html#integer-types">unsigned integers</a></li>
<li><a href="./../move-basics/vector.html">vector</a></li>
<li><a href="./../move-basics/address.html">address</a></li>
</ul>
Expand Down

0 comments on commit 7462dc2

Please sign in to comment.