about summary refs log tree commit diff
path: root/compiler/rustc_data_structures/src
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2024-06-21 05:35:26 +0000
committerbors <bors@rust-lang.org>2024-06-21 05:35:26 +0000
commitf1a79413bad704abf0d39da7b2c9746b5febdde1 (patch)
treed62e86b319c4f189d03be09be1a3deb4b46a93fe /compiler/rustc_data_structures/src
parent66ad792c4ef99dd9e3d3e5303eaaeec867857cae (diff)
parent9d7de1fbdbf57b5d21e8a841c306e7d1f228ef37 (diff)
downloadrust-f1a79413bad704abf0d39da7b2c9746b5febdde1.tar.gz
rust-f1a79413bad704abf0d39da7b2c9746b5febdde1.zip
Auto merge of #3693 - rust-lang:rustup-2024-06-21, r=oli-obk
Automatic Rustup
Diffstat (limited to 'compiler/rustc_data_structures/src')
-rw-r--r--compiler/rustc_data_structures/src/base_n.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/compiler/rustc_data_structures/src/base_n.rs b/compiler/rustc_data_structures/src/base_n.rs
index aed89fadc4c..80810df14d0 100644
--- a/compiler/rustc_data_structures/src/base_n.rs
+++ b/compiler/rustc_data_structures/src/base_n.rs
@@ -1,5 +1,6 @@
-/// Converts unsigned integers into a string representation with some base.
-/// Bases up to and including 36 can be used for case-insensitive things.
+//! Converts unsigned integers into a string representation with some base.
+//! Bases up to and including 36 can be used for case-insensitive things.
+
 use std::ascii;
 use std::fmt;