Update ch04-01-what-is-ownership.md (#83)

Co-authored-by: YangQi <2419731931@qq.com>
This commit is contained in:
liuyanjie 2022-06-07 16:14:59 +08:00 committed by GitHub
parent f66c945198
commit cffa0d7d45
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -44,7 +44,7 @@ Rust 的核心功能(之一)是 **所有权***ownership*)。虽然该
let s = "hello";
```
变量 `s` 绑定到了一个字符串字面量,这个字符串值是硬编码进程序代码中的。这个变量从声明的点开始直到当前 **作用域** 结束时都是有效的。示例 4-1 的注释标明了变量 `s` 在何处是有效的
变量 `s` 绑定到了一个字符串字面量,这个字符串值是硬编码进程序代码中的。该变量从声明的那一刻开始直到当前 **作用域** 结束时都是有效的。示例 4-1 的注释标明了变量 `s` 的有效范围
```rust
{{#rustdoc_include ../listings/ch04-understanding-ownership/listing-04-01/src/main.rs:here}}