diff options
author | Antonio <antoniobenitezhid@gmail.com> | 2024-05-03 16:44:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-03 16:44:50 +0200 |
commit | d2bef4fd81150c2a9d52b48479424d67d7b23fa7 (patch) | |
tree | de3a884bad939e974ade7392ebbc80978be869fd | |
parent | 5aa672e259bdbb7f6619eeab289a84c3b2d42c4e (diff) |
fix variable name (#4919)
-rw-r--r-- | es-es/rust-es.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/es-es/rust-es.html.markdown b/es-es/rust-es.html.markdown index 617b878c..d75a0b43 100644 --- a/es-es/rust-es.html.markdown +++ b/es-es/rust-es.html.markdown @@ -275,7 +275,7 @@ fn main() { *ahora_es_mio += 2; println!("{}", ahora_es_mio); // 7 - // println!("{}", mio); // esto no compilaría, porque `now_its_mine` es el + // println!("{}", mio); // esto no compilaría, porque `ahora_es_mio` es el // que posee el puntero // Referencia – un puntero inmutable que referencia a otro dato |