Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion markdown-pages/docs/manual/mutation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ myValue.contents = 6;

</CodeTab>

Note the `mut` at binding; see [let binding](./let-binding.mdx)!. While a tuple is always
Note that the previous binding `five` stays `5`, since it got the underlying item on the `ref` box, not the `ref` itself.

**Note**: you might see in the JS output tabs above that `ref` allocates an object. Worry not; local, non-exported `ref`s allocations are optimized away.

Expand Down