Skip to content

Commit 50732b6

Browse files
Update responseDescProducesResponseType.md
1 parent f8bb008 commit 50732b6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

aspnetcore/release-notes/aspnetcore-10/includes/responseDescProducesResponseType.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ The [ProducesAttribute](/dotnet/api/microsoft.aspnetcore.mvc.producesattribute-1
44

55
```csharp
66
[HttpGet(Name = "GetWeatherForecast")]
7-
[ProducesResponseType<IEnumerable<WeatherForecast>>(StatusCodes.Status200OK, Description = "The weather forecast for the next 5 days.")]
7+
[ProducesResponseType<IEnumerable<WeatherForecast>>(StatusCodes.Status200OK,
8+
Description = "The weather forecast for the next 5 days.")]
89
public IEnumerable<WeatherForecast> Get()
910
{
1011
```

0 commit comments

Comments
 (0)