Skip to content

Commit

Permalink
deploy: b2860f3
Browse files Browse the repository at this point in the history
  • Loading branch information
damirka committed Aug 13, 2024
1 parent 62aa586 commit df0597d
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion print.html
Original file line number Diff line number Diff line change
Expand Up @@ -5089,7 +5089,7 @@ <h2 id="vecset"><a class="header" href="#vecset">VecSet</a></h2>
}
}
</code></pre>
<p>VecSet will fail on attempt to insert a an item that already exists in the set.</p>
<p>VecSet will fail on attempt to insert an item that already exists in the set.</p>
<h2 id="vecmap"><a class="header" href="#vecmap">VecMap</a></h2>
<p><code>VecMap</code> is a collection type that stores a map of key-value pairs. It is similar to a <code>VecSet</code>, but
it allows you to associate a value with each item in the set. This makes it useful for storing a
Expand Down
2 changes: 1 addition & 1 deletion programmability/collections.html
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ <h2 id="vecset"><a class="header" href="#vecset">VecSet</a></h2>
}
}
</code></pre>
<p>VecSet will fail on attempt to insert a an item that already exists in the set.</p>
<p>VecSet will fail on attempt to insert an item that already exists in the set.</p>
<h2 id="vecmap"><a class="header" href="#vecmap">VecMap</a></h2>
<p><code>VecMap</code> is a collection type that stores a map of key-value pairs. It is similar to a <code>VecSet</code>, but
it allows you to associate a value with each item in the set. This makes it useful for storing a
Expand Down
2 changes: 1 addition & 1 deletion reference/control-flow/pattern-matching.html
Original file line number Diff line number Diff line change
Expand Up @@ -693,7 +693,7 @@ <h3 id="-usage"><a class="header" href="#-usage"><code>..</code> Usage</a></h3>
fun wild_match(x: MyStruct) {
match (x) {
MyStruct(.., 1) =&gt; 1,
// OK! The `..` pattern can be used at the begining of the constructor pattern
// OK! The `..` pattern can be used at the beginning of the constructor pattern
MyStruct(1, ..) =&gt; 2,
// OK! The `..` pattern can be used at the end of the constructor pattern
MyStruct(1, .., 1) =&gt; 3,
Expand Down
2 changes: 1 addition & 1 deletion reference/print.html
Original file line number Diff line number Diff line change
Expand Up @@ -2668,7 +2668,7 @@ <h3 id="-usage"><a class="header" href="#-usage"><code>..</code> Usage</a></h3>
fun wild_match(x: MyStruct) {
match (x) {
MyStruct(.., 1) =&gt; 1,
// OK! The `..` pattern can be used at the begining of the constructor pattern
// OK! The `..` pattern can be used at the beginning of the constructor pattern
MyStruct(1, ..) =&gt; 2,
// OK! The `..` pattern can be used at the end of the constructor pattern
MyStruct(1, .., 1) =&gt; 3,
Expand Down
2 changes: 1 addition & 1 deletion reference/searchindex.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion reference/searchindex.json

Large diffs are not rendered by default.

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.

0 comments on commit df0597d

Please sign in to comment.