diff options
| author | Thom Chiovoloni <chiovolonit@gmail.com> | 2021-10-30 07:52:19 -0700 |
|---|---|---|
| committer | Thom Chiovoloni <chiovolonit@gmail.com> | 2022-02-05 11:15:17 -0800 |
| commit | ed01324835fd4d2aef53ba0b767562640e2f9c71 (patch) | |
| tree | 11d76af905e31d90b9e5835ef15380c5ce895bf2 | |
| parent | 628b2173265e19cb5d22b86349618b0ab88cf5c2 (diff) | |
| download | rust-ed01324835fd4d2aef53ba0b767562640e2f9c71.tar.gz rust-ed01324835fd4d2aef53ba0b767562640e2f9c71.zip | |
Fix zh::SMALL string in core::str benchmarks
| -rw-r--r-- | library/core/benches/str/corpora.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/benches/str/corpora.rs b/library/core/benches/str/corpora.rs index fefde757150..04e60f0144a 100644 --- a/library/core/benches/str/corpora.rs +++ b/library/core/benches/str/corpora.rs @@ -42,7 +42,7 @@ pub mod en { } pub mod zh { - pub const SMALL: &str = "度惊人且内存利用率极高"; + pub const SMALL: &str = "速度惊人且内存利用率极高"; define_consts! { "Rust 速度惊人且内存利用率极高。由于\ 没有运行时和垃圾回收,它能够胜任对性能要\ |
