From 90baaddd6152b0aa6a90230c67c180f8b1551bd8 Mon Sep 17 00:00:00 2001 From: Aleksey Kladov Date: Thu, 22 Aug 2019 20:02:36 +0300 Subject: [PATCH] comment typo --- src/inline_lazy.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/inline_lazy.rs b/src/inline_lazy.rs index e2dd635..85d8c03 100644 --- a/src/inline_lazy.rs +++ b/src/inline_lazy.rs @@ -32,7 +32,7 @@ impl Lazy { }); // `self.0` is guaranteed to be `Some` by this point - // The `Once` will catch and propegate panics + // The `Once` will catch and propagate panics unsafe { match *self.0.as_ptr() { Some(ref x) => x,