diff --git a/dotnet-sample/Program.cs b/dotnet-sample/Program.cs index 8afc0a4..f0094f7 100644 --- a/dotnet-sample/Program.cs +++ b/dotnet-sample/Program.cs @@ -1,6 +1,6 @@ var builder = WebApplication.CreateBuilder(args); var app = builder.Build(); -app.MapGet("/", () => "Hello Dev Intersections!"); +app.MapGet("/", () => "Hello DevIntersections!"); app.Run();