@@ -121,8 +121,8 @@ impl FileMetadata {
121121 /// NOTE: This is **NOT** thread safe, if you are holding any locks that might be held by both the main thread
122122 /// and the thread executing this function, you can deadlock. You should also never call this function
123123 /// on multiple threads at a time. See the following issues:
124- /// - https://github.com/Vector35/binaryninja-api/issues/6289
125- /// - https://github.com/Vector35/binaryninja-api/issues/6325
124+ /// - < https://github.com/Vector35/binaryninja-api/issues/6289>
125+ /// - < https://github.com/Vector35/binaryninja-api/issues/6325>
126126 pub fn run_undoable_transaction < F : FnOnce ( ) -> Result < T , E > , T , E > (
127127 & self ,
128128 func : F ,
@@ -146,8 +146,8 @@ impl FileMetadata {
146146 /// NOTE: This is **NOT** thread safe, if you are holding any locks that might be held by both the main thread
147147 /// and the thread executing this function, you can deadlock. You should also never call this function
148148 /// on multiple threads at a time. See the following issues:
149- /// - https://github.com/Vector35/binaryninja-api/issues/6289
150- /// - https://github.com/Vector35/binaryninja-api/issues/6325
149+ /// - < https://github.com/Vector35/binaryninja-api/issues/6289>
150+ /// - < https://github.com/Vector35/binaryninja-api/issues/6325>
151151 pub fn begin_undo_actions ( & self , anonymous_allowed : bool ) -> String {
152152 unsafe { BnString :: into_string ( BNBeginUndoActions ( self . handle , anonymous_allowed) ) }
153153 }
@@ -157,8 +157,8 @@ impl FileMetadata {
157157 /// NOTE: This is **NOT** thread safe, if you are holding any locks that might be held by both the main thread
158158 /// and the thread executing this function, you can deadlock. You should also never call this function
159159 /// on multiple threads at a time. See the following issues:
160- /// - https://github.com/Vector35/binaryninja-api/issues/6289
161- /// - https://github.com/Vector35/binaryninja-api/issues/6325
160+ /// - < https://github.com/Vector35/binaryninja-api/issues/6289>
161+ /// - < https://github.com/Vector35/binaryninja-api/issues/6325>
162162 pub fn commit_undo_actions ( & self , id : & str ) {
163163 let id = id. to_cstr ( ) ;
164164 unsafe {
@@ -171,8 +171,8 @@ impl FileMetadata {
171171 /// NOTE: This is **NOT** thread safe, if you are holding any locks that might be held by both the main thread
172172 /// and the thread executing this function, you can deadlock. You should also never call this function
173173 /// on multiple threads at a time. See the following issues:
174- /// - https://github.com/Vector35/binaryninja-api/issues/6289
175- /// - https://github.com/Vector35/binaryninja-api/issues/6325
174+ /// - < https://github.com/Vector35/binaryninja-api/issues/6289>
175+ /// - < https://github.com/Vector35/binaryninja-api/issues/6325>
176176 pub fn revert_undo_actions ( & self , id : & str ) {
177177 let id = id. to_cstr ( ) ;
178178 unsafe {
0 commit comments