diff options
Diffstat (limited to 'rust/src/project.rs')
| -rw-r--r-- | rust/src/project.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rust/src/project.rs b/rust/src/project.rs index c268d613..4f91010d 100644 --- a/rust/src/project.rs +++ b/rust/src/project.rs @@ -612,7 +612,7 @@ impl Project { /// } /// ``` // NOTE mut is used here, so only one lock can be acquired at once - pub fn bulk_operation(&mut self) -> Result<ProjectBulkOperationLock, ()> { + pub fn bulk_operation(&mut self) -> Result<ProjectBulkOperationLock<'_>, ()> { Ok(ProjectBulkOperationLock::lock(self)) } } |
