]> git.proxmox.com Git - rustc.git/blobdiff - compiler/rustc_infer/src/infer/undo_log.rs
New upstream version 1.65.0+dfsg1
[rustc.git] / compiler / rustc_infer / src / infer / undo_log.rs
index 74a26ebc39f817c0673c1e86e9595312c4d9d8b1..611961ab1cc94afb98501fb1b205e4502af4199a 100644 (file)
@@ -100,7 +100,7 @@ impl Default for InferCtxtUndoLogs<'_> {
 }
 
 /// The UndoLogs trait defines how we undo a particular kind of action (of type T). We can undo any
-/// action that is convertable into an UndoLog (per the From impls above).
+/// action that is convertible into an UndoLog (per the From impls above).
 impl<'tcx, T> UndoLogs<T> for InferCtxtUndoLogs<'tcx>
 where
     UndoLog<'tcx>: From<T>,