Skip to content

Commit

Permalink
update typo in slice.md (#98)
Browse files Browse the repository at this point in the history
  • Loading branch information
jarwonozt authored Nov 27, 2024
1 parent 9d8848d commit 1d43921
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions docs/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ Berikut merupakan hall of fame kontributor yang sudah berbaik hati menyisihkan w
1. [Fredianto](https://github.com/nferdazel)
1. [I Putu Saputrayana](https://github.com/iyansr)
1. [Indra Sah Noeldy](https://github.com/indra87g)
1. [Jarwonozt](https://github.com/jarwonozt)
1. [Khisby Al Ghofari](https://github.com/khisby)
1. [Lori](https://github.com/chud-lori)
1. [M. Zakiyuddin Munziri](https://github.com/zakiego)
Expand Down
2 changes: 1 addition & 1 deletion docs/basic/slice.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ Bisa dilihat pada statement print `slice_a[0]` dan `slice_a[1]`, nilai elemennya

> Data yang tipenya `&[T]` biasa disebut sebagai [*shared slice*](https://doc.rust-lang.org/reference/types/slice.html) atau cukup *slice*. Contohnya seperti `slice_a` dengan tipe data `&[i32]`.

Slice `slice_a` bukan merupakan pemilik sebenarnya data `[12, 16, 8]`, slice tersebut hanya meminjam datanya dari `numbers` yang notabene dalah owner data `[12, 16, 8]`.
Slice `slice_a` bukan merupakan pemilik sebenarnya data `[12, 16, 8]`, slice tersebut hanya meminjam datanya dari `numbers` yang notabene adalah owner data `[12, 16, 8]`.

Meminjam di sini artinya variabel baru `slice_a` memiliki data yang sama, dan alamat memori (atau pointer) data tersebut juga sama yaitu mengarah ke owner sebenarnya, yang pada contoh ini adalah `numbers`.

Expand Down

0 comments on commit 1d43921

Please sign in to comment.