Skip to content

Commit 5dc9f02

Browse files
committed
Update greeting message in InfoController's Get method for consistency
1 parent 31ce662 commit 5dc9f02

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/MyWebApi/MyWebApi/Controllers/WeatherForecastController.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public InfoController(ILogger<InfoController> logger)
1717
public IActionResult Get()
1818
{
1919
// Log a message at the Information level
20-
var message = "Hello World from InfoController.";
20+
var message = "Hello World from InfoController...";
2121
_logger.LogInformation(message);
2222
return Ok(message);
2323
}

0 commit comments

Comments
 (0)