From acd8fe8fe875d51ea4fa723f1e73819a56bfec8a Mon Sep 17 00:00:00 2001 From: Oliver Schneider Date: Tue, 7 Mar 2017 10:45:13 +0100 Subject: [PATCH] Fix a typo in the docs --- src/librustc/ty/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/librustc/ty/mod.rs b/src/librustc/ty/mod.rs index d7efee06db2b5..be04b0e6577f0 100644 --- a/src/librustc/ty/mod.rs +++ b/src/librustc/ty/mod.rs @@ -1286,7 +1286,7 @@ pub struct Destructor { /// invoked even when there are lifetimes in the type-structure of /// `adt` that do not strictly outlive the adt value itself. /// (This allows programs to make cyclic structures without - /// resorting to unasfe means; see RFCs 769 and 1238). + /// resorting to unsafe means; see RFCs 769 and 1238). pub is_dtorck: bool, }