Skip to content

Commit

Permalink
chore: fix some typos in the project documentation and code (#171)
Browse files Browse the repository at this point in the history
  • Loading branch information
sky-coderay authored Nov 27, 2024
1 parent d8f3243 commit d8df15a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/dev-guide/sui-struct.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Walrus objects in your own Sui smart contracts.

```admonish danger title="A word of caution"
Walrus Mainnet will use new Move packages with `struct` layouts and function signatures that may not
be compatible with this package. Move code that builds against this package will need to rewritten.
be compatible with this package. Move code that builds against this package will need to be rewritten.
```

## Blob and storage objects
Expand Down Expand Up @@ -114,7 +114,7 @@ public struct BlobCertified has copy, drop {
```

The `BlobCertified` event with `deletable` set to false and an `end_epoch` in the future indicates
that the blob will be available until this epoch. A light client proof this event was emitted
that the blob will be available until this epoch. A light client proof that this event was emitted
for a blob ID constitutes a proof of availability for the data with this blob ID.

When a deletable blob is deleted, a `BlobDeleted` event is emitted:
Expand Down
2 changes: 1 addition & 1 deletion docs/walrus-sites/portal.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# The Walrus Sites portal

We use the term "portal" to indicate any technology that is used to access an browse Walrus Sites.
We use the term "portal" to indicate any technology that is used to access and browse Walrus Sites.
As mentioned in the [overview](./overview.md#the-site-rendering-path), we foresee three kinds of
portals:

Expand Down
2 changes: 1 addition & 1 deletion docs/walrus-sites/routing.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ The **`routes` keys** are path patterns in the form `/path/to/some/*`, where the
represents a wildcard.

```admonish
Currently, the wildcard *can only be only be specified at the end of the path*.
Currently, the wildcard *can only be specified at the end of the path*.
Therefore, `/path/*` is a valid path, while `/path/*/to` and `*/path/to/*` are not.
```

Expand Down

0 comments on commit d8df15a

Please sign in to comment.