]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
doc/dev: Fix typos in encoding.rst 58306/head
authorN Balachandran <nibalach@redhat.com>
Thu, 27 Jun 2024 07:22:09 +0000 (12:52 +0530)
committerZac Dover <zac.dover@proton.me>
Thu, 27 Jun 2024 12:17:54 +0000 (22:17 +1000)
Signed-off-by: N Balachandran <nibalach@redhat.com>
(cherry picked from commit 9f43c67a639958a13fef198ffe62cf5241f1f53c)

doc/dev/encoding.rst

index f065d64bd1a901117baafffb11347e59b2036bcd..4b7598ebea09e4189a9af1ab39b00e3df27a753a 100644 (file)
@@ -31,7 +31,7 @@ by a programmer by implementing the ``encode`` and ``decode`` methods.
 Principles for format change
 ----------------------------
 It is not unusual that the format of serialization changes. This
-process requires careful attention from during both development
+process requires careful attention during both development
 and review.
 
 The general rule is that a decoder must understand what had been
@@ -55,7 +55,7 @@ of interoperability between dencoders:
 
 * ``n-2`` for dencoding between daemons,
 * ``n-3`` hard requirement for client-involved scenarios,
-* ``n-3..``  soft requirements for clinet-involved scenarios. Ideally
+* ``n-3..``  soft requirements for client-involved scenarios. Ideally
   every client should be able to talk any version of daemons.
 
 As the underlying reasons are the same, the rules dencoders
@@ -163,7 +163,7 @@ macro.
 The append-extendability of our dencoders is a result of the forward
 compatibility that the ``ENCODE_START`` and ``DECODE_FINISH`` macros bring.
 
-They are implementing extendibility facilities. An encoder, when filling
+They are implementing extensibility facilities. An encoder, when filling
 the bufferlist, prepends three fields: version of the current format,
 minimal version of a decoder compatible with it and the total size of
 all encoded fields.