Skip to content

Commit 128641c

Browse files
committed
Update CHANGES.md; spelling
1 parent b1aadf5 commit 128641c

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
- Add pre-built bindings for GDAL 3.10 ([#573](https://github.com/georust/gdal/pull/573))
1515
- Add methods `alternative_name`, `is_nullable`, `is_unique`, `default_value` to `Field` ([#561](https://github.com/georust/gdal/pull/561))
1616
- Add `Defn::geometry_type` ([#562](https://github.com/georust/gdal/pull/562))
17+
- 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))
1718

1819
### Fixed
1920

src/vector/transaction.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,9 +181,9 @@ impl Dataset {
181181

182182
/// Represents maybe a transaction on a dataset for speed reasons.
183183
///
184-
/// 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.
184+
/// 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.
185185
///
186-
/// If the transaction is not explicitly committed when it is dropped, it is implicitely committed, but you will not know if it fails.
186+
/// If the transaction is not explicitly committed when it is dropped, it is implicitly committed, but you will not know if it fails.
187187
///
188188
/// The transaction holds a mutable borrow on the `Dataset` that it was created from, so during the
189189
/// lifetime of the transaction you will need to access the dataset by dereferencing the

0 commit comments

Comments
 (0)