Rollup merge of #23329 - jbcrail:rm-syntax-highlight, r=sanxiyn

As suggested by @steveklabnik in #23254, I removed the redundant Rust syntax highlighting from the documentation.
This commit is contained in:
Manish Goregaokar
2015-03-17 15:20:27 +05:30
51 changed files with 172 additions and 167 deletions

View File

@@ -182,7 +182,7 @@ pub mod builtin {
///
/// # Examples
///
/// ```rust
/// ```
/// use std::fmt;
///
/// let s = fmt::format(format_args!("hello {}", "world"));
@@ -205,7 +205,7 @@ pub mod builtin {
///
/// # Examples
///
/// ```rust
/// ```
/// let path: &'static str = env!("PATH");
/// println!("the $PATH variable at the time of compiling was: {}", path);
/// ```
@@ -224,7 +224,7 @@ pub mod builtin {
///
/// # Examples
///
/// ```rust
/// ```
/// let key: Option<&'static str> = option_env!("SECRET_KEY");
/// println!("the secret key might be: {:?}", key);
/// ```
@@ -372,7 +372,7 @@ pub mod builtin {
///
/// # Examples
///
/// ```rust
/// ```
/// mod test {
/// pub fn foo() {
/// assert!(module_path!().ends_with("test"));
@@ -395,7 +395,7 @@ pub mod builtin {
///
/// # Examples
///
/// ```rust
/// ```
/// let my_directory = if cfg!(windows) {
/// "windows-specific-directory"
/// } else {