Skip to content

Commit a24e2e7

Browse files
authored
Merge branch 'master' into ironcev/forc-migrate-tool
2 parents 3f3af88 + 8fe2bd6 commit a24e2e7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/reference/src/documentation/language/control-flow/match/single-line.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ The left side of the arrow `=>` is the pattern that we are matching on and the r
1010

1111
We check each arm starting from `0` and make our way down until we either find a match on our pattern or we reach the `catch_all` case.
1212

13-
The `|` operator can be used to produce a pattern that is a disjuction of other patterns.
13+
The `|` operator can be used to produce a pattern that is a disjunction of other patterns.
1414

1515
The `catch_all` case is equivalent to an `else` in [if expressions](../if-expressions.md) and it does not have to be called `catch_all`. Any pattern declared after a `catch_all` case will not be matched because once the compiler sees the first `catch_all` it stop performing further checks.

docs/reference/src/documentation/operations/namespace/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Address Namespace
22

3-
Sway utilizies namespaces to distinguish between address types.
3+
Sway utilizes namespaces to distinguish between address types.
44

55
Having multiple address types enforces type-safety and expands the range of values that an address can take because the same value can be used across multiple types.
66

0 commit comments

Comments
 (0)