about summary refs log tree commit diff
path: root/src/libstd/sync
diff options
context:
space:
mode:
authorAleksey Kladov <aleksey.kladov@gmail.com>2018-08-03 16:50:30 +0300
committerGitHub <noreply@github.com>2018-08-03 16:50:30 +0300
commita2f9aaf7a35e673c3b8f0825a07505b0294aa24f (patch)
treef1a5cabf4969031ed06fc72463e392a615cc809c /src/libstd/sync
parent94de821002f3378a59c2bf812ce73756f3ed0512 (diff)
downloadrust-a2f9aaf7a35e673c3b8f0825a07505b0294aa24f.tar.gz
rust-a2f9aaf7a35e673c3b8f0825a07505b0294aa24f.zip
Fix trailnig WS
Diffstat (limited to 'src/libstd/sync')
-rw-r--r--src/libstd/sync/once.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/sync/once.rs b/src/libstd/sync/once.rs
index 113fbbf1f61..3abc260b458 100644
--- a/src/libstd/sync/once.rs
+++ b/src/libstd/sync/once.rs
@@ -178,7 +178,7 @@ impl Once {
     /// happens-before relation between the closure and code executing after the
     /// return).
     ///
-    /// If the given closure recusively invokes `call_once` on the same `Once` 
+    /// If the given closure recusively invokes `call_once` on the same `Once`
     /// instance the exact behavior is not specified, allowed outcomes are
     /// a panic or a deadlock.
     ///