diff --git a/src/ch09-02-recoverable-errors-with-result.md b/src/ch09-02-recoverable-errors-with-result.md
index d107e0c..e552da5 100644
--- a/src/ch09-02-recoverable-errors-with-result.md
+++ b/src/ch09-02-recoverable-errors-with-result.md
@@ -191,7 +191,7 @@ thread 'main' panicked at 'Failed to open hello.txt: Error { repr: Os { code:
例如,示例 9-6 展示了一个从文件中读取用户名的函数。如果文件不存在或不能读取,这个函数会将这些错误返回给调用它的代码:
-Filename: src/main.rs
+文件名: src/main.rs
```rust
use std::io;