Skip to content

Commit

Permalink
Update CHANGES.md; spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
Atreyagaurav committed Nov 2, 2024
1 parent b1aadf5 commit 128641c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
- Add pre-built bindings for GDAL 3.10 ([#573](https://github.com/georust/gdal/pull/573))
- Add methods `alternative_name`, `is_nullable`, `is_unique`, `default_value` to `Field` ([#561](https://github.com/georust/gdal/pull/561))
- Add `Defn::geometry_type` ([#562](https://github.com/georust/gdal/pull/562))
- Add `Dataset::maybe_start_transaction` which always succeeds to use transaction when possible for speed reasons -- no rollback ([#584](https://github.com/georust/gdal/pull/584))

### Fixed

Expand Down
4 changes: 2 additions & 2 deletions src/vector/transaction.rs
Original file line number Diff line number Diff line change
Expand Up @@ -181,9 +181,9 @@ impl Dataset {

/// Represents maybe a transaction on a dataset for speed reasons.
///
/// It can be committed by calling [`commit`](MaybeTransaction::commit), but unline [`Transaction`] it can not be rolled back. The transaction part is to make the process speedy when possible. If the [`Dataset`] does not support transaction, it does nothing.
/// It can be committed by calling [`commit`](MaybeTransaction::commit), but unlike [`Transaction`] it can not be rolled back. The transaction part is to make the process speedy when possible. If the [`Dataset`] does not support transaction, it does nothing.
///
/// If the transaction is not explicitly committed when it is dropped, it is implicitely committed, but you will not know if it fails.
/// If the transaction is not explicitly committed when it is dropped, it is implicitly committed, but you will not know if it fails.
///
/// The transaction holds a mutable borrow on the `Dataset` that it was created from, so during the
/// lifetime of the transaction you will need to access the dataset by dereferencing the
Expand Down

0 comments on commit 128641c

Please sign in to comment.