From 7326fa6eccd5e0c6819353c2c58486dfca4116a8 Mon Sep 17 00:00:00 2001 From: "deepsource-autofix[bot]" <62050782+deepsource-autofix[bot]@users.noreply.github.com> Date: Sun, 17 Nov 2024 04:16:55 +0000 Subject: [PATCH] style: format code with ClangFormat, dotnet-format, Go fmt, Gofumpt, isort, PHP CS Fixer, RuboCop, Ruff Formatter, Rustfmt, StandardRB and swift-format This commit fixes the style issues introduced in e1c08ac according to the output from ClangFormat, dotnet-format, Go fmt, Gofumpt, isort, PHP CS Fixer, RuboCop, Ruff Formatter, Rustfmt, StandardRB and swift-format. Details: None --- examples/dotnet/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/dotnet/Program.cs b/examples/dotnet/Program.cs index bb889594..026eb645 100644 --- a/examples/dotnet/Program.cs +++ b/examples/dotnet/Program.cs @@ -48,7 +48,7 @@ private static string GetCompeFromUser() Console.Write("Buscar COMPE (3 dígitos): "); compe = Console.ReadLine(); } while (!IsValidCompe(compe)); - + return compe; }