Skip to content

Commit

Permalink
planescontroller
Browse files Browse the repository at this point in the history
  • Loading branch information
ThijSlim committed Nov 1, 2023
1 parent a93793d commit ff21c51
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions WrightBrothersApi/Controllers/PlanesControler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ namespace WrightBrothersApi.Controllers
{
[ApiController]
[Route("[controller]")]
public class PlaneController : ControllerBase
public class PlanesController : ControllerBase
{
private readonly ILogger<PlaneController> _logger;
private readonly ILogger<PlanesController> _logger;

public PlaneController(ILogger<PlaneController> logger)
public PlanesController(ILogger<PlanesController> logger)
{
_logger = logger;
}
Expand Down

0 comments on commit ff21c51

Please sign in to comment.