about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorFerdia McKeogh <ferdia@mckeogh.tech>2019-07-17 19:55:44 +0200
committerFerdia McKeogh <ferdia@mckeogh.tech>2019-07-17 19:55:44 +0200
commit14a1f7246b27f31906dfe9c70c58fdfe863e314d (patch)
tree764d3092bedbcc09458cdc23a411b1ed9f56d8dd /src
parent8c589bca53fd9ce350092290fd0bf9c39994f8fb (diff)
downloadrust-14a1f7246b27f31906dfe9c70c58fdfe863e314d.tar.gz
rust-14a1f7246b27f31906dfe9c70c58fdfe863e314d.zip
Requested change
Diffstat (limited to 'src')
-rw-r--r--src/librustc_typeck/check/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/librustc_typeck/check/mod.rs b/src/librustc_typeck/check/mod.rs
index 3990946291d..1462c098b19 100644
--- a/src/librustc_typeck/check/mod.rs
+++ b/src/librustc_typeck/check/mod.rs
@@ -1442,12 +1442,12 @@ fn maybe_check_static_with_link_section(tcx: TyCtxt<'_>, id: DefId, span: Span)
         return
     }
 
-    // For the wasm32 target statics with #[link_section] are placed into custom
+    // For the wasm32 target statics with `#[link_section]` are placed into custom
     // sections of the final output file, but this isn't link custom sections of
     // other executable formats. Namely we can only embed a list of bytes,
     // nothing with pointers to anything else or relocations. If any relocation
     // show up, reject them here.
-    // #[link_section] may contain arbitrary, or even undefined bytes, but it is
+    // `#[link_section]` may contain arbitrary, or even undefined bytes, but it is
     // the consumer's responsibility to ensure all bytes that have been read
     // have defined values.
     let instance = ty::Instance::mono(tcx, id);