about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorRémy Rakic <remy.rakic+github@gmail.com>2022-11-23 18:16:37 +0000
committerRémy Rakic <remy.rakic+github@gmail.com>2023-01-03 20:14:27 +0000
commitf635f9d4e4448bbccca28a93e42ca52043edeb41 (patch)
treeee0bdcbe79022c933b8e03cb09ac673a01e416d4 /src
parent4e4658f0aafbf559a2c3e8674f10a06cadbfc737 (diff)
downloadrust-f635f9d4e4448bbccca28a93e42ca52043edeb41.tar.gz
rust-f635f9d4e4448bbccca28a93e42ca52043edeb41.zip
turn a comment into an actual doc comment
Diffstat (limited to 'src')
-rw-r--r--src/bootstrap/native.rs14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/bootstrap/native.rs b/src/bootstrap/native.rs
index 48158d51e00..781a738a811 100644
--- a/src/bootstrap/native.rs
+++ b/src/bootstrap/native.rs
@@ -63,13 +63,13 @@ impl LdFlags {
     }
 }
 
-// This returns whether we've already previously built LLVM.
-//
-// It's used to avoid busting caches during x.py check -- if we've already built
-// LLVM, it's fine for us to not try to avoid doing so.
-//
-// This will return the llvm-config if it can get it (but it will not build it
-// if not).
+/// This returns whether we've already previously built LLVM.
+///
+/// It's used to avoid busting caches during x.py check -- if we've already built
+/// LLVM, it's fine for us to not try to avoid doing so.
+///
+/// This will return the llvm-config if it can get it (but it will not build it
+/// if not).
 pub fn prebuilt_llvm_config(
     builder: &Builder<'_>,
     target: TargetSelection,