Skip to content

Commit f5d5818

Browse files
author
hristo.h
committed
Styling fixes (#178)
1 parent 849af1f commit f5d5818

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

src/MyTested.AspNetCore.Mvc.ModelState/Builders/Contracts/Models/IAndModelStateBuilder.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
namespace MyTested.AspNetCore.Mvc.Builders.Contracts.Models
22
{
3+
/// <summary>
4+
/// Used for adding AndAlso() method to the <see cref="Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary"/> builder.
5+
/// </summary>
36
public interface IAndModelStateBuilder : IModelStateBuilder
47
{
58
/// <summary>
6-
/// Used for adding AndAlso() method to the <see cref="Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary"/> builder.
9+
/// AndAlso method for better readability when building <see cref="Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary"/>.
710
/// </summary>
811
/// <returns>The same <see cref="IModelStateBuilder"/>.</returns>
912
IModelStateBuilder AndAlso();

src/MyTested.AspNetCore.Mvc.ModelState/Builders/Models/ModelStateBuilder.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
using System.Collections.Generic;
44
using Microsoft.AspNetCore.Mvc.ModelBinding;
55
using Microsoft.AspNetCore.Routing;
6-
using MyTested.AspNetCore.Mvc.Builders.Contracts.Models;
7-
using MyTested.AspNetCore.Mvc.Internal.TestContexts;
8-
using MyTested.AspNetCore.Mvc.Utilities.Extensions;
6+
using Contracts.Models;
7+
using Internal.TestContexts;
8+
using Utilities.Extensions;
99

1010
/// <summary>
1111
/// Used for building <see cref="ModelStateDictionary"/>

src/MyTested.AspNetCore.Mvc.ModelState/ComponentBuilderModelStateExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using Builders.Contracts.Base;
66
using Builders.Contracts.Models;
77
using Builders.Models;
8-
using MyTested.AspNetCore.Mvc.Internal.TestContexts;
8+
using Internal.TestContexts;
99

1010
/// <summary>
1111
/// Contains extension methods for <see cref="IBaseTestBuilderWithComponentBuilder{TBuilder}"/>.

0 commit comments

Comments
 (0)