Skip to content

Commit 029ed51

Browse files
committed
Fix typo.
1 parent f85d9bc commit 029ed51

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

content/zh/post/2024/测试技能进阶三_property_based_testing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
+++
22
title = "测试技能进阶(三): Property Based Testing"
33
date = 2024-10-14T09:37:00-07:00
4-
lastmod = 2024-10-14T14:56:09-07:00
4+
lastmod = 2024-10-14T15:28:08-07:00
55
tags = ["testing", "rust"]
66
categories = ["testing", "rust"]
77
draft = false
@@ -308,7 +308,7 @@ fn reverse<T: Clone>(xs: &[T]) -> Vec<T> {
308308
}
309309
```
310310
311-
对于任意类型的列表,反转之后现反转的结果,肯定是和原结果一样的,那么我们就可以开始声明我们的标准(specification), 那就是任意的列表,可以是字符串列表,整型列表或者是其他的结构体列表:
311+
对于任意类型的列表,反转之后再反转的结果,肯定是和原结果一样的,那么我们就可以开始声明我们的标准(specification), 那就是任意的列表,可以是字符串列表,整型列表或者是其他的结构体列表:
312312
313313
```rust
314314
#[cfg(test)]

0 commit comments

Comments
 (0)