Skip to content

Commit

Permalink
Fix an error in ChunkGrid docs
Browse files Browse the repository at this point in the history
  • Loading branch information
LDeakin committed Jul 23, 2024
1 parent 408a8d4 commit d54b89d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
- Fix an unnecessary copy in `async_store_set_partial_values`
- Fix error when `bytes` metadata is encoded without a configuration, even if empty
- Fix an error in `ChunkGrid` docs

## [0.15.1] - 2024-07-11

Expand Down
2 changes: 1 addition & 1 deletion src/array/chunk_grid.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ pub type ChunkGridPlugin = Plugin<ChunkGrid>;
inventory::collect!(ChunkGridPlugin);

impl ChunkGrid {
/// Create a chunk key encoding.
/// Create a chunk grid.
pub fn new<T: ChunkGridTraits + 'static>(chunk_grid: T) -> Self {
let chunk_grid: Box<dyn ChunkGridTraits> = Box::new(chunk_grid);
chunk_grid.into()
Expand Down

0 comments on commit d54b89d

Please sign in to comment.