Skip to content

Commit

Permalink
happy now?
Browse files Browse the repository at this point in the history
  • Loading branch information
damirka committed Mar 22, 2024
1 parent 99dc288 commit b62d7d6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/guides/open-sourcing-libraries.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ TODO: docgen

## Adding Examples

When publishing a package that is intented to be used (an NFT protocol or a library), it is important to showcase how this package can be used. This is where examples come in handy. There's no special functionality for examples in Move, however, there are some conventions that are used to mark examples. First of all, only sources are included into the package bytecode, so any code placed in a different directory will not be included, but will be tested!
When publishing a package that is intended to be used (an NFT protocol or a library), it is important to showcase how this package can be used. This is where examples come in handy. There's no special functionality for examples in Move, however, there are some conventions that are used to mark examples. First of all, only sources are included into the package bytecode, so any code placed in a different directory will not be included, but will be tested!

This is why placing examples into a separate `examples/` directory is a good idea.

Expand Down
2 changes: 1 addition & 1 deletion src/programmability/fast-path.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ The same principle applies to Sui. If a transaction only touches the private sta

## Frozen objects

Consensus is only required for mutating the shared state. If the object is immutable, it is treated as a "constant" and can be accessed in parallel. Frozen objects can be used to share unchangable data between multiple parties without requiring consensus.
Consensus is only required for mutating the shared state. If the object is immutable, it is treated as a "constant" and can be accessed in parallel. Frozen objects can be used to share unchangeable data between multiple parties without requiring consensus.

## In practice

Expand Down
2 changes: 1 addition & 1 deletion src/programmability/sui-framework.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ Modules:
- sui::ecdsa_r1
- sui::ecvrf
- sui::ed25519
- sui::"groth16"
(also mention verifier 16 growth)
- sui::group_ops
- sui::hash
- sui::hmac
Expand Down

0 comments on commit b62d7d6

Please sign in to comment.