about summary refs log tree commit diff
path: root/library/std
diff options
context:
space:
mode:
authorfleetingbytes <7075397+fleetingbytes@users.noreply.github.com>2023-04-03 17:17:43 +0200
committerGitHub <noreply@github.com>2023-04-03 17:17:43 +0200
commita450557a54b871ce182900cde3894a3494876e1e (patch)
tree8208ed09efbe277b965ce9ab39adca1b3819131d /library/std
parent5618c8efd7925b6f1b5d8e5b30228f065606e841 (diff)
downloadrust-a450557a54b871ce182900cde3894a3494876e1e.tar.gz
rust-a450557a54b871ce182900cde3894a3494876e1e.zip
Remove redundant empty line
one is enough
Diffstat (limited to 'library/std')
-rw-r--r--library/std/src/env.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/library/std/src/env.rs b/library/std/src/env.rs
index c9f8e617df6..1345469d8b3 100644
--- a/library/std/src/env.rs
+++ b/library/std/src/env.rs
@@ -242,7 +242,6 @@ fn _var(key: &OsStr) -> Result<String, VarError> {
 ///  - the environment variable's name contains
 /// the equal sign character (`=`) or the NUL character
 ///
-///
 /// Note that the method will not check if the environment variable
 /// is valid Unicode. If you want to have an error on invalid UTF-8,
 /// use the [`var`] function instead.