Skip to content

Commit

Permalink
fix: smartpointer box typo (#45)
Browse files Browse the repository at this point in the history
  • Loading branch information
pgjbz authored Oct 1, 2023
1 parent 884df2a commit dab2f52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/advanced-01/02-smart-pointers-box.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Box\<T>

O `Smart Pointer` Box<T>, é bem versátil, ele aponta para a `heap` e também implementa as [traits](../intermediary-02/06-traits.md) `Deref` e `DerefMut`, sendo assim, é possível apontar para um endereço de moria na Heap e realizar modificações nesta região de memória. Vamos a um exemplo mais simples.
O `Smart Pointer` Box<T>, é bem versátil, ele aponta para a `heap` e também implementa as [traits](../intermediary-02/06-traits.md) `Deref` e `DerefMut`, sendo assim, é possível apontar para um endereço de memória na Heap e realizar modificações nesta região de memória. Vamos a um exemplo mais simples.

```rust
fn main() {
Expand Down

0 comments on commit dab2f52

Please sign in to comment.