summaryrefslogtreecommitdiffstats
path: root/vendor/gix-lock/src/file.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/gix-lock/src/file.rs')
-rw-r--r--vendor/gix-lock/src/file.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/gix-lock/src/file.rs b/vendor/gix-lock/src/file.rs
index ad9a6db06..24ec98f13 100644
--- a/vendor/gix-lock/src/file.rs
+++ b/vendor/gix-lock/src/file.rs
@@ -17,7 +17,7 @@ impl File {
self.inner.with_mut(|tf| f(tf.as_file_mut())).and_then(|res| res)
}
/// Close the lock file to prevent further writes and to save system resources.
- /// A call to [Marker::commit()] is allowed on the [`Marker`] to write changes back to the resource.
+ /// A call to [`Marker::commit()`] is allowed on the [`Marker`] to write changes back to the resource.
pub fn close(self) -> std::io::Result<Marker> {
Ok(Marker {
inner: self.inner.close()?,