about summary refs log tree commit diff
path: root/src/librustdoc/html
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2024-12-03 22:27:14 +0100
committerGuillaume Gomez <guillaume1.gomez@gmail.com>2024-12-03 22:42:08 +0100
commit2997ec51a69ba02df1b9782c0a3d4dad0939d32e (patch)
tree89094af159901e69eb6ce550b6dee842b527675f /src/librustdoc/html
parent2e1f25bb1c322c4e77d746a940d2c3ff1895f3ec (diff)
downloadrust-2997ec51a69ba02df1b9782c0a3d4dad0939d32e.tar.gz
rust-2997ec51a69ba02df1b9782c0a3d4dad0939d32e.zip
Rename `is_real_and_local` function into `filename_real_and_local`
Diffstat (limited to 'src/librustdoc/html')
-rw-r--r--src/librustdoc/html/sources.rs7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/librustdoc/html/sources.rs b/src/librustdoc/html/sources.rs
index 4b05e7c427c..9827f97d28d 100644
--- a/src/librustdoc/html/sources.rs
+++ b/src/librustdoc/html/sources.rs
@@ -50,7 +50,7 @@ struct LocalSourcesCollector<'a, 'tcx> {
     src_root: &'a Path,
 }
 
-fn is_real_and_local(span: clean::Span, sess: &Session) -> Option<RealFileName> {
+fn filename_real_and_local(span: clean::Span, sess: &Session) -> Option<RealFileName> {
     if span.cnum(sess) == LOCAL_CRATE
         && let FileName::Real(file) = span.filename(sess)
     {
@@ -66,7 +66,8 @@ impl LocalSourcesCollector<'_, '_> {
         let span = item.span(self.tcx);
         let Some(span) = span else { return };
         // skip all synthetic "files"
-        let Some(p) = is_real_and_local(span, sess).and_then(|file| file.into_local_path()) else {
+        let Some(p) = filename_real_and_local(span, sess).and_then(|file| file.into_local_path())
+        else {
             return;
         };
         if self.local_sources.contains_key(&*p) {
@@ -132,7 +133,7 @@ impl DocVisitor<'_> for SourceCollector<'_, '_> {
         // If we're not rendering sources, there's nothing to do.
         // If we're including source files, and we haven't seen this file yet,
         // then we need to render it out to the filesystem.
-        if let Some(filename) = is_real_and_local(span, sess) {
+        if let Some(filename) = filename_real_and_local(span, sess) {
             let span = span.inner();
             let pos = sess.source_map().lookup_source_file(span.lo());
             let file_span = span.with_lo(pos.start_pos).with_hi(pos.end_position());