From 018fcb0c5d067dab6a18a16749b9ee810ba9a0c9 Mon Sep 17 00:00:00 2001 From: wangyuhang Date: Mon, 18 Nov 2024 16:03:25 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E8=BD=BB=E9=87=8F=E7=BA=A7PR=E3=80=91?= =?UTF-8?q?fix=20some=20spelling=20errors?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitee/ISSUE_TEMPLATE/crash_report.md | 2 +- README.md | 2 +- README.zh.md | 2 +- deps/hdr_histogram/hdr_histogram.h | 4 ++-- deps/hiredis/CHANGELOG.md | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.gitee/ISSUE_TEMPLATE/crash_report.md b/.gitee/ISSUE_TEMPLATE/crash_report.md index c608ccd..0b0350a 100644 --- a/.gitee/ISSUE_TEMPLATE/crash_report.md +++ b/.gitee/ISSUE_TEMPLATE/crash_report.md @@ -14,7 +14,7 @@ Paste the complete crash log between the quotes below. Please include a few line ``` ``` -**Aditional information** +**Additional information** 1. OS distribution and version 2. Steps to reproduce (if any) diff --git a/README.md b/README.md index 63556d7..c994f1d 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ Benchmarking openAMDC openamdc-benchmark -h 127.0.0.1 -p 6379 -n 5000 -c 50 --threads 8 -* [memtier_benchmark](https://github.com/RedisLabs/memtier_benchmark) is a command line utility developed by RedisLabs for load generation and bechmarking NoSQL key-value databases. +* [memtier_benchmark](https://github.com/RedisLabs/memtier_benchmark) is a command line utility developed by RedisLabs for load generation and benchmarking NoSQL key-value databases. memtier_benchmark -s 127.0.0.1 -p 6379 -t 8 -c 50 -n 5000 --hide-histogram --distinct-client-seed --command="set __key__ __data__" --key-prefix="kv_" --key-minimum=1 --key-maximum=10000 -R -d 128 diff --git a/README.zh.md b/README.zh.md index 727ec21..55bdbb4 100644 --- a/README.zh.md +++ b/README.zh.md @@ -26,7 +26,7 @@ openAMDC基准测试 openamdc-benchmark -h 127.0.0.1 -p 6379 -n 5000 -c 50 --threads 8 -* [memtier_benchmark](https://github.com/RedisLabs/memtier_benchmark) 是由RedisLabs开发的一个命令行程序,用于对NoSQL键值数据库进行进行基准测试。 +* [memtier_benchmark](https://github.com/RedisLabs/memtier_benchmark) 是由RedisLabs开发的一个命令行程序,用于对NoSQL键值数据库进行基准测试。 memtier_benchmark -s 127.0.0.1 -p 6379 -t 12 -c 50 -n 5000 --hide-histogram --distinct-client-seed --command="set __key__ __data__" --key-prefix="kv_" --key-minimum=1 --key-maximum=10000 -R -d 128 diff --git a/deps/hdr_histogram/hdr_histogram.h b/deps/hdr_histogram/hdr_histogram.h index c26c56b..171fc7d 100644 --- a/deps/hdr_histogram/hdr_histogram.h +++ b/deps/hdr_histogram/hdr_histogram.h @@ -3,7 +3,7 @@ * Written by Michael Barker and released to the public domain, * as explained at http://creativecommons.org/publicdomain/zero/1.0/ * - * The source for the hdr_histogram utilises a few C99 constructs, specifically + * The source for the hdr_histogram utilize a few C99 constructs, specifically * the use of stdint/stdbool and inline variable declaration. */ @@ -436,7 +436,7 @@ void hdr_iter_log_init( /** * Iterate to the next value for the iterator. If there are no more values - * available return faluse. + * available return false. * * @param itr 'This' pointer * @return 'false' if there are no values remaining for this iterator. diff --git a/deps/hiredis/CHANGELOG.md b/deps/hiredis/CHANGELOG.md index 271f1fc..064c49c 100644 --- a/deps/hiredis/CHANGELOG.md +++ b/deps/hiredis/CHANGELOG.md @@ -100,7 +100,7 @@ _A big thanks to everyone who helped with this release. The following list incl - Use unique names for allocator struct members [\#823](https://github.com/redis/hiredis/pull/823) ([michael-grunder](https://github.com/michael-grunder)) - New SSL API to replace redisSecureConnection\(\). [\#821](https://github.com/redis/hiredis/pull/821) ([yossigo](https://github.com/yossigo)) - Add logic to handle RESP3 push messages [\#819](https://github.com/redis/hiredis/pull/819) ([michael-grunder](https://github.com/michael-grunder)) -- Use standrad isxdigit instead of custom helper function. [\#814](https://github.com/redis/hiredis/pull/814) ([tryfinally](https://github.com/tryfinally)) +- Use standard isxdigit instead of custom helper function. [\#814](https://github.com/redis/hiredis/pull/814) ([tryfinally](https://github.com/tryfinally)) - Fix missing SSL build/install options. [\#812](https://github.com/redis/hiredis/pull/812) ([yossigo](https://github.com/yossigo)) - Add link to ABI tracker [\#808](https://github.com/redis/hiredis/pull/808) ([michael-grunder](https://github.com/michael-grunder)) - Resp3 verbatim string support [\#805](https://github.com/redis/hiredis/pull/805) ([michael-grunder](https://github.com/michael-grunder)) -- Gitee