mirror of https://mirror.osredm.com/root/redis.git
Fix grammar and typos (#13803)
This MR includes minor improvements and grammatical fixes in the documentation. Specifically: • Corrected grammatical mistakes in sentences for better clarity. • Fixed typos and improved phrasing to enhance readability. • Ensured consistency in terminology and sentence structure. --------- Co-authored-by: debing.sun <debing.sun@redis.com>
This commit is contained in:
parent
a257b6b4ba
commit
a51918209c
|
@ -2602,7 +2602,7 @@ uint32_t writePingExt(clusterMsg *hdr, int gossipcount) {
|
||||||
totlen += getShardIdPingExtSize();
|
totlen += getShardIdPingExtSize();
|
||||||
extensions++;
|
extensions++;
|
||||||
|
|
||||||
/* Populate insternal secret */
|
/* Populate internal secret */
|
||||||
if (cursor != NULL) {
|
if (cursor != NULL) {
|
||||||
clusterMsgPingExtInternalSecret *ext = preparePingExt(cursor, CLUSTERMSG_EXT_TYPE_INTERNALSECRET, getInternalSecretPingExtSize());
|
clusterMsgPingExtInternalSecret *ext = preparePingExt(cursor, CLUSTERMSG_EXT_TYPE_INTERNALSECRET, getInternalSecretPingExtSize());
|
||||||
memcpy(ext->internal_secret, server.cluster->internal_secret, CLUSTER_INTERNALSECRETLEN);
|
memcpy(ext->internal_secret, server.cluster->internal_secret, CLUSTER_INTERNALSECRETLEN);
|
||||||
|
|
|
@ -231,7 +231,7 @@ typedef struct {
|
||||||
uint16_t ver; /* Protocol version, currently set to 1. */
|
uint16_t ver; /* Protocol version, currently set to 1. */
|
||||||
uint16_t port; /* Primary port number (TCP or TLS). */
|
uint16_t port; /* Primary port number (TCP or TLS). */
|
||||||
uint16_t type; /* Message type */
|
uint16_t type; /* Message type */
|
||||||
uint16_t count; /* Only used for some kind of messages. */
|
uint16_t count; /* Only used for some kinds of messages. */
|
||||||
uint64_t currentEpoch; /* The epoch accordingly to the sending node. */
|
uint64_t currentEpoch; /* The epoch accordingly to the sending node. */
|
||||||
uint64_t configEpoch; /* The config epoch if it's a master, or the last
|
uint64_t configEpoch; /* The config epoch if it's a master, or the last
|
||||||
epoch advertised by its master if it is a
|
epoch advertised by its master if it is a
|
||||||
|
@ -258,8 +258,8 @@ typedef struct {
|
||||||
* especially during cluster rolling upgrades.
|
* especially during cluster rolling upgrades.
|
||||||
*
|
*
|
||||||
* Therefore, fields in this struct should remain at the same offset from
|
* Therefore, fields in this struct should remain at the same offset from
|
||||||
* release to release. The static asserts below ensures that incompatible
|
* release to release. The static asserts below ensure that incompatible
|
||||||
* changes in clusterMsg be caught at compile time.
|
* changes in clusterMsg are caught at compile time.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
static_assert(offsetof(clusterMsg, sig) == 0, "unexpected field offset");
|
static_assert(offsetof(clusterMsg, sig) == 0, "unexpected field offset");
|
||||||
|
|
Loading…
Reference in New Issue