From ec533da8375d607553f5a411d4384cd7d8d57e1a Mon Sep 17 00:00:00 2001 From: Arthur Cohen Date: Thu, 26 Sep 2024 00:21:13 +0200 Subject: [PATCH] chore: Formatting --- typecheck/src/collectors/constants.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/typecheck/src/collectors/constants.rs b/typecheck/src/collectors/constants.rs index f6adba6b..15ebb9b9 100644 --- a/typecheck/src/collectors/constants.rs +++ b/typecheck/src/collectors/constants.rs @@ -1,4 +1,6 @@ -//! Collect all primitive union type constants in the program in order to build our primitive union types properly. There are three primitive union types: `char`, `int` and `string`, so this module collects all character, integer and string constants. +//! Collect all primitive union type constants in the program in order to build our primitive +// union types properly. There are three primitive union types: `char`, `int` and `string`, so +// this module collects all character, integer and string constants. use std::collections::HashSet; use std::convert::Infallible;