Skip to content

Commit 76a41de

Browse files
committed
Use camel casing for property name
1 parent e6de4a8 commit 76a41de

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Microsoft.OpenApi.Readers/ParseNodes/AnyMapFieldMapParameter.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ public AnyMapFieldMapParameter(
1717
Func<T, IDictionary<string, U>> propertyMapGetter,
1818
Func<U, OpenApiAny> propertyGetter,
1919
Action<U, OpenApiAny> propertySetter,
20-
Func<T, JsonSchema> SchemaGetter)
20+
Func<T, JsonSchema> schemaGetter)
2121
{
2222
this.PropertyMapGetter = propertyMapGetter;
2323
this.PropertyGetter = propertyGetter;
2424
this.PropertySetter = propertySetter;
25-
this.SchemaGetter = SchemaGetter;
25+
this.SchemaGetter = schemaGetter;
2626
}
2727

2828
/// <summary>

0 commit comments

Comments
 (0)