diff options
Diffstat (limited to 'rlp/doc.go')
-rw-r--r-- | rlp/doc.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rlp/doc.go b/rlp/doc.go index 72667416c..b3a81fe23 100644 --- a/rlp/doc.go +++ b/rlp/doc.go @@ -17,13 +17,13 @@ /* Package rlp implements the RLP serialization format. -The purpose of RLP (Recursive Linear Prefix) qis to encode arbitrarily +The purpose of RLP (Recursive Linear Prefix) is to encode arbitrarily nested arrays of binary data, and RLP is the main encoding method used to serialize objects in Ethereum. The only purpose of RLP is to encode structure; encoding specific atomic data types (eg. strings, ints, floats) is left up to higher-order protocols; in Ethereum integers must be represented in big endian binary form with no leading zeroes -(thus making the integer value zero be equivalent to the empty byte +(thus making the integer value zero equivalent to the empty byte array). RLP values are distinguished by a type tag. The type tag precedes the |