Skip to content

Commit 593fbac

Browse files
committed
Update greeting message in InfoController's Get method for consistency
1 parent 7a3d45b commit 593fbac

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
@@ -16,7 +16,7 @@ public InfoController(ILogger<InfoController> logger)
1616
[HttpGet(Name = "Get")]
1717
public IActionResult Get()
1818
{
19-
var _helloworld = "Hello World 123";
19+
var _helloworld = "Hello World...";
2020
var message = "Hello World from InfoController. This is a sample message.";
2121
_logger.LogInformation(message);
2222
return Ok(message);

0 commit comments

Comments
 (0)