Skip to content

Commit

Permalink
Fix typos/grammar
Browse files Browse the repository at this point in the history
  • Loading branch information
LDeakin committed Nov 16, 2023
1 parent 89191fc commit 5903bbf
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Add `par_encode` for `zstd` codec
- **Breaking**: Codecs now must implement `encode_opt`, `decode_opt`, and `partial_decoder_opt`
- **Breaking**: Partial decoders now must implement `partial_decode_opt` and the `decoded_representation` is now supplied on creation, rather than when calling `partial_decode`/`partial_decode_par`/`partial_decode_opt`
- Sharding partial decoder now decodes inner chunks in full rather than partially decoding them, this is must faster with some codecs (e.g. blosc)
- In future, this will probably configurable
- Sharding partial decoder now decodes inner chunks in full rather than partially decoding them, this is much faster with some codecs (e.g. blosc)
- In future, this will probably become configurable
- Moved `storage/store/{key.rs,prefix.rs}` to `storage/{store_key.rs,store_prefix.rs}`

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion src/array/array_builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ pub struct ArrayBuilder {
pub bytes_to_bytes_codecs: Vec<Box<dyn BytesToBytesCodecTraits>>,
/// Storage transformer chain.
pub storage_transformers: StorageTransformerChain,
/// Atributes.
/// Attributes.
pub attributes: serde_json::Map<String, serde_json::Value>,
/// Dimension names.
pub dimension_names: Option<Vec<DimensionName>>,
Expand Down
2 changes: 1 addition & 1 deletion src/array/codec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ pub trait ArrayToArrayCodecTraits:
{
/// Initialise a partial decoder with optional parallelism.
///
/// `parallel` only affects paralellism on initialisation, which is irrelevant for most codecs.
/// `parallel` only affects parallelism on initialisation, which is irrelevant for most codecs.
/// Parallel partial decoding support is independent of how the partial decoder is initialised.
///
/// # Errors
Expand Down

0 comments on commit 5903bbf

Please sign in to comment.