rust/hg-core/src/checkexec.rs
changeset 50412 331a3cbe1c9e
parent 49895 07792fd1837f
child 50413 e2c8b30ab4e7
--- a/rust/hg-core/src/checkexec.rs	Thu Mar 30 12:21:38 2023 +0200
+++ b/rust/hg-core/src/checkexec.rs	Mon Apr 03 15:32:39 2023 +0200
@@ -112,7 +112,7 @@
     Ok(false)
 }
 
-/// This function is a rust rewrite of [checkexec] function from [posix.py]
+/// This function is a rust rewrite of `checkexec` function from `posix.py`
 /// Returns true if the filesystem supports execute permissions.
 pub fn check_exec(path: impl AsRef<Path>) -> bool {
     check_exec_impl(path).unwrap_or(false)