We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8d0570 commit 1a65aadCopy full SHA for 1a65aad
idioms/dtor-finally.md
@@ -76,7 +76,7 @@ The finaliser must be assigned into a variable, otherwise it will be destroyed
76
immediately, rather than when it goes out of scope. The variable name must start
77
with `_` if the variable is only used as a finaliser, otherwise the compiler
78
will warn that the finaliser is never used. However, do not call the variable
79
-`_` with no suffix - in that case it will be again be destroyed immediately.
+`_` with no suffix - in that case it will be destroyed immediately.
80
81
In Rust, destructors are run when an object goes out of scope. This happens
82
whether we reach the end of block, there is an early return, or the program
0 commit comments