From ea94e3c5319389460a2fd272f5cdf407c6214359 Mon Sep 17 00:00:00 2001 From: blueloveTH Date: Sat, 14 Oct 2023 01:35:29 +0800 Subject: [PATCH] some doc fix --- README.md | 2 +- README_zh.md | 2 +- docs/performance.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 99bc6111..c28fe2cc 100644 --- a/README.md +++ b/README.md @@ -132,7 +132,7 @@ for a quick overview of the supported features. | Reflection | `hasattr()/getattr()/setattr()` | ✅ | | Import | `import/from..import` | ✅ | | Context Block | `with as :` | ✅ | -| Type Annotation | `def f(a:int, b:float=1)` | ✅ | +| Type Annotation | `def f(a:int, b:float=1)` | ✅ | | Generator | `yield i` | ✅ | | Decorator | `@cache` | ✅ | diff --git a/README_zh.md b/README_zh.md index 007ab2f4..c8933bb3 100644 --- a/README_zh.md +++ b/README_zh.md @@ -92,7 +92,7 @@ int main(){ | 反射 | `hasattr()/getattr()/setattr()` | ✅ | | 导入模块 | `import/from..import` | ✅ | | 上下文管理器 | `with as :` | ✅ | -| 类型标注 | `def f(a:int, b:float=1)` | ✅ | +| 类型标注 | `def f(a:int, b:float=1)` | ✅ | | 生成器 | `yield i` | ✅ | | 装饰器 | `@cache` | ✅ | diff --git a/docs/performance.md b/docs/performance.md index ea7dc02b..e9dcf2d6 100644 --- a/docs/performance.md +++ b/docs/performance.md @@ -7,7 +7,7 @@ label: Performance # Performance Currently, pkpy is as fast as cpython 3.9. -**Performance results for cpython 3.9 are applicable to for pkpy.** +Performance results for cpython 3.9 are applicable to for pkpy. Here is a benchmark result of `v1.2.6`. Files are located in `benchmarks/`.