Skip to content

Commit

Permalink
Fix case in link from objects chapter 3 to .move file (MystenLabs#2576)
Browse files Browse the repository at this point in the history
  • Loading branch information
Clay-Mysten authored Jun 15, 2022
1 parent fbe7b8e commit a30b83b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Objects in Sui can have different types of [ownership](../objects.md#object-owne

### Create immutable object

Regardless of whether an object was just created or already owned by an account, to turn this object into an immutable object, we need to call the following API in the [Transfer Library](https://github.com/MystenLabs/sui/blob/main/crates/sui-framework/sources/Transfer.move):
Regardless of whether an object was just created or already owned by an account, to turn this object into an immutable object, we need to call the following API in the [Transfer Library](https://github.com/MystenLabs/sui/blob/main/crates/sui-framework/sources/transfer.move):
```rust
public native fun freeze_object<T: key>(obj: T);
```
Expand Down

0 comments on commit a30b83b

Please sign in to comment.