Skip to content

Commit

Permalink
PR feedback.
Browse files Browse the repository at this point in the history
  • Loading branch information
metasim committed Sep 7, 2022
1 parent bfeb48f commit 840a6b6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/driver.rs
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ impl Driver {
/// Create a new dataset of size (`size_x`, `size_y`) and `bands` band count,
/// with cell data type specified by `T` and extended options specified via `options`.
/// [Per GDAL](https://gdal.org/api/gdaldriver_cpp.html#_CPPv4N10GDALDriver6CreateEPKciii12GDALDataType12CSLConstList),
/// the set of legal options for `options` is driver specific, and there is no way to query in advance to establish legal values.a
/// the set of legal options for `options` is driver specific, and there is no way to query in advance to establish the valid ones.
///
/// See also: [`RasterCreationOption`], [`create`](Self::create), [`create_with_band_type`](Self::create_with_band_type).
///
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
//!
//! ### Raster Data
//!
//! A raster `Dataset` has a `size` (`cols`/`rows`), an ordered sequence of [`RasterBand`](raster::RasterBand)s, geospatial
//! A raster `Dataset` has a `size` (`cols`,`rows`), an ordered sequence of [`RasterBand`](raster::RasterBand)s, geospatial
//! metadata, and general-purpose [`Metadata`], common to all the bands.
//!
//! Each `RasterBand` contains a buffer of pixels (a.k.a. _cells_), a _no-data_ value, and other metadata.
Expand Down
2 changes: 1 addition & 1 deletion src/programs/mod.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
//! Rust Wrappers of [GDAL Programs](https://gdal.org/programs/index.html)
//! Rust wrappers for the [GDAL Programs](https://gdal.org/programs/index.html)
pub mod raster;

0 comments on commit 840a6b6

Please sign in to comment.