Skip to content

Commit 4b56bfb

Browse files
Update responseDescProducesResponseType.md (#35249)
* Update responseDescProducesResponseType.md * Update date format in release notes
1 parent 7c0f332 commit 4b56bfb

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

aspnetcore/release-notes/aspnetcore-10.0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ author: rick-anderson
44
description: Learn about the new features in ASP.NET Core 10.0.
55
ms.author: riande
66
ms.custom: mvc
7-
ms.date: 04/10/2025
7+
ms.date: 4/10/2025
88
uid: aspnetcore-10
99
---
1010
# What's new in ASP.NET Core 10.0

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)