This commit is contained in:
Anton-4 2024-07-08 14:14:36 +02:00
parent 6b2d2e3406
commit 0502734293
No known key found for this signature in database
GPG key ID: 0971D718C0A9B937

View file

@ -15,7 +15,7 @@ thread_local! {
static SUFFIXED_ANSWER_COUNTER: Cell<usize> = const { Cell::new(0) };
}
/// Generates a unique identifier, useful for intermediate items during desugaring.
/// Generates a unique identifier, useful for intermediate items during desugaring.
fn next_unique_suffixed_ident() -> String {
SUFFIXED_ANSWER_COUNTER.with(|counter| {
let count = counter.get();