]> git.proxmox.com Git - rustc.git/blobdiff - src/doc/nomicon/src/destructors.md
New upstream version 1.55.0+dfsg1
[rustc.git] / src / doc / nomicon / src / destructors.md
index 524c401f82349f819908a408fba36c0619814a3e..3d999613895890e6340965361ca21af6266f33c5 100644 (file)
@@ -3,6 +3,7 @@
 What the language *does* provide is full-blown automatic destructors through the
 `Drop` trait, which provides the following method:
 
+<!-- ignore: function header -->
 ```rust,ignore
 fn drop(&mut self);
 ```