Skip to content

Commit

Permalink
Fix link to Shared section of Objects doc
Browse files Browse the repository at this point in the history
  • Loading branch information
Clay-Mysten authored and sblackshear committed Aug 19, 2022
1 parent 8343dd8 commit 4ed2987
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/src/build/move/sui-move-library.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ To make an object `obj` shared and mutable, one can call:
```
transfer::share_object(obj);
```
After this call, `obj` stays mutable, but becomes shared by everyone, i.e. anyone can send a transaction to mutate this object. However, such an object cannot be transferred or embedded in another object as a field. For more detail, see the [shared objects](../../learn/build/objects.md#shared) documentation.
After this call, `obj` stays mutable, but becomes shared by everyone, i.e. anyone can send a transaction to mutate this object. However, such an object cannot be transferred or embedded in another object as a field. For more details, see the [shared objects](../../build/objects.md#shared) documentation.


## Transaction context
Expand Down

0 comments on commit 4ed2987

Please sign in to comment.