@@ -70,7 +70,7 @@ UBJSON Specification Draft 12 (https://github.com/ubjson/universal-binary-json)
7070by adding native support for ** N-dimensional packed arrays** - an essential data
7171structure for scientific applications - and ** columnar table format** for packed
7272objects to offer efficient storage of tables and repeating objects, such as
73- Python Pandas DataFrames and NumPy arrays-of-objects. These optimized
73+ Python Pandas DataFrame and NumPy arrays-of-objects. These optimized
7474container constructs greatly reduce storage overhead and redundancy,
7575enhancing data exchange efficiency.
7676
@@ -734,7 +734,7 @@ Strings shorter than the length are right-padded with null bytes (0x00).
734734A dictionary for mapping string-value rows/columns should be indicated by
735735a payload-less optimized string-array.
736736
737- ** Use case:** Repeated/categorical string values with low cardinality .
737+ ** Use case:** Repeated/categorical string values.
738738
739739** Schema syntax:**
740740```
@@ -774,7 +774,7 @@ represent the dictionary size:
774774
775775An offset-table based storage is used for storing string vectors of variable lengths.
776776It first concatenates all strings into a single linear buffer, and assigns an integer as
777- the offset from the begining of the buffer for each string element. The use of
777+ the offset from the beginning of the buffer for each string element. The use of
778778offset-table should be indicated by an payload-less optimized array containing only the
779779optimized type ` [$<type>] ` .
780780
@@ -1330,7 +1330,7 @@ Represents a calendar date without time-of-day information.
13301330 - Range: [ 1, 12]
13311331- ** day** : Unsigned 8-bit integer (byte 3)
13321332 - Range: [ 1, 31]
1333- - Uses proleptic Gregorian calendar
1333+ - Uses Gregorian calendar
13341334
13351335##### Example
13361336
@@ -1390,7 +1390,7 @@ the datetime interpretation.
13901390
13911391##### Example
13921392
1393- Datetime for 2024-01-15 10:30:00.123456 UTC:
1393+ DateTime for 2024-01-15 10:30:00.123456 UTC:
13941394```
13951395[E][U][6][U][8][0x40][0x15][0xE3][0xED][0xED][0x0C][0x06][0x00]
13961396```
@@ -1434,7 +1434,7 @@ Duration of 5 days, 3 hours, 30 minutes, 15.5 seconds (= 444615500000 μs):
14341434#### <a name =" ext_complex64 " />complex64 (Type ID: 8)
14351435
14361436Represents a complex number with single-precision (32-bit) floating-point
1437- components. Compatible with NumPy's ` complex64 ` dtype .
1437+ components. Compatible with NumPy's ` complex64 ` data type .
14381438
14391439##### Payload Format (8 bytes)
14401440
@@ -1463,7 +1463,7 @@ Complex number `3.0 + 4.0i`:
14631463#### <a name =" ext_complex128 " />complex128 (Type ID: 9)
14641464
14651465Represents a complex number with double-precision (64-bit) floating-point
1466- components. Compatible with NumPy's ` complex128 ` dtype and Python's ` complex ` .
1466+ components. Compatible with NumPy's ` complex128 ` data type and Python's ` complex ` .
14671467
14681468##### Payload Format (16 bytes)
14691469
0 commit comments