Skip to content

Commit

Permalink
Update and rename doc/src/objects.md to doc/src/build/objects.md (Mys…
Browse files Browse the repository at this point in the history
…tenLabs#744)

* Update and rename doc/src/objects.md to doc/src/build/objects.md

And modify title for content generator

* Update objects.md
  • Loading branch information
Clay-Mysten authored Mar 11, 2022
1 parent 642d298 commit f23535a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion doc/src/objects.md → doc/src/build/objects.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# Objects
---
title: Objects
---

Sui has programmable objects created and managed by [Move](https://github.com/diem/move) packages (a.k.a. *smart contracts*). Move packages themselves are also objects. Thus, Sui objects can be partitioned into two categories:
* *Mutable data values*: typed data governed by a particular Move [*module*](https://github.com/diem/move/blob/main/language/documentation/book/src/modules-and-scripts.md). Each object value is a [struct](https://github.com/diem/move/blob/main/language/documentation/book/src/structs-and-resources.md) with fields that can contain primitive types (e.g. integers, addresses), other objects, and non-object structs. Each object value is mutable at the time of its creation but can subsequently be *frozen* and become permanently immutable.
Expand Down

0 comments on commit f23535a

Please sign in to comment.