Skip to content

Commit 83b41c4

Browse files
authored
Merge pull request #9019 from katrinleinweber/fix-typos
Fix typos
2 parents c2e7a38 + 6b3be81 commit 83b41c4

File tree

51 files changed

+54
-54
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+54
-54
lines changed

modules/swagger-codegen/src/main/resources/csharp-dotnet2/Configuration.mustache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ namespace {{clientPackage}}
8484
private static string _dateTimeFormat = ISO8601_DATETIME_FORMAT;
8585

8686
/// <summary>
87-
/// Gets or sets the the date time format used when serializing in the ApiClient
87+
/// Gets or sets the date time format used when serializing in the ApiClient
8888
/// By default, it's set to ISO 8601 - "o", for others see:
8989
/// https://msdn.microsoft.com/en-us/library/az4se3k1(v=vs.110).aspx
9090
/// and https://msdn.microsoft.com/en-us/library/8kb3ddd4(v=vs.110).aspx

modules/swagger-codegen/src/main/resources/csharp/Configuration.mustache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ namespace {{packageName}}.Client
323323
}
324324
325325
/// <summary>
326-
/// Gets or sets the the date time format used when serializing in the ApiClient
326+
/// Gets or sets the date time format used when serializing in the ApiClient
327327
/// By default, it's set to ISO 8601 - "o", for others see:
328328
/// https://msdn.microsoft.com/en-us/library/az4se3k1(v=vs.110).aspx
329329
/// and https://msdn.microsoft.com/en-us/library/8kb3ddd4(v=vs.110).aspx

modules/swagger-codegen/src/main/resources/ruby/base_object.mustache

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
return nil unless attributes.is_a?(Hash)
66
self.class.swagger_types.each_pair do |key, type|
77
if type =~ /\AArray<(.*)>/i
8-
# check to ensure the input is an array given that the the attribute
8+
# check to ensure the input is an array given that the attribute
99
# is documented as an array but the input is not
1010
if attributes[self.class.attribute_map[key]].is_a?(Array)
1111
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
@@ -100,4 +100,4 @@
100100
else
101101
value
102102
end
103-
end
103+
end

samples/client/petstore-security-test/csharp/SwaggerClient/src/IO.Swagger/Client/Configuration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ public virtual string TempFolderPath
329329
}
330330

331331
/// <summary>
332-
/// Gets or sets the the date time format used when serializing in the ApiClient
332+
/// Gets or sets the date time format used when serializing in the ApiClient
333333
/// By default, it's set to ISO 8601 - "o", for others see:
334334
/// https://msdn.microsoft.com/en-us/library/az4se3k1(v=vs.110).aspx
335335
/// and https://msdn.microsoft.com/en-us/library/8kb3ddd4(v=vs.110).aspx

samples/client/petstore-security-test/ruby/lib/petstore/models/model_return.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def build_from_hash(attributes)
8787
return nil unless attributes.is_a?(Hash)
8888
self.class.swagger_types.each_pair do |key, type|
8989
if type =~ /\AArray<(.*)>/i
90-
# check to ensure the input is an array given that the the attribute
90+
# check to ensure the input is an array given that the attribute
9191
# is documented as an array but the input is not
9292
if attributes[self.class.attribute_map[key]].is_a?(Array)
9393
self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) } )

samples/client/petstore/csharp-dotnet2/SwaggerClientTest/Lib/SwaggerClient/src/main/CsharpDotNet2/IO/Swagger/Client/Configuration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ public static String TempFolderPath
8484
private static string _dateTimeFormat = ISO8601_DATETIME_FORMAT;
8585

8686
/// <summary>
87-
/// Gets or sets the the date time format used when serializing in the ApiClient
87+
/// Gets or sets the date time format used when serializing in the ApiClient
8888
/// By default, it's set to ISO 8601 - "o", for others see:
8989
/// https://msdn.microsoft.com/en-us/library/az4se3k1(v=vs.110).aspx
9090
/// and https://msdn.microsoft.com/en-us/library/8kb3ddd4(v=vs.110).aspx

samples/client/petstore/csharp/SwaggerClient/src/IO.Swagger/Client/Configuration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ public virtual string TempFolderPath
329329
}
330330

331331
/// <summary>
332-
/// Gets or sets the the date time format used when serializing in the ApiClient
332+
/// Gets or sets the date time format used when serializing in the ApiClient
333333
/// By default, it's set to ISO 8601 - "o", for others see:
334334
/// https://msdn.microsoft.com/en-us/library/az4se3k1(v=vs.110).aspx
335335
/// and https://msdn.microsoft.com/en-us/library/8kb3ddd4(v=vs.110).aspx

samples/client/petstore/csharp/SwaggerClientNet35/src/IO.Swagger/Client/Configuration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ public virtual string TempFolderPath
328328
}
329329

330330
/// <summary>
331-
/// Gets or sets the the date time format used when serializing in the ApiClient
331+
/// Gets or sets the date time format used when serializing in the ApiClient
332332
/// By default, it's set to ISO 8601 - "o", for others see:
333333
/// https://msdn.microsoft.com/en-us/library/az4se3k1(v=vs.110).aspx
334334
/// and https://msdn.microsoft.com/en-us/library/8kb3ddd4(v=vs.110).aspx

samples/client/petstore/csharp/SwaggerClientNet40/src/IO.Swagger/Client/Configuration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ public virtual string TempFolderPath
329329
}
330330

331331
/// <summary>
332-
/// Gets or sets the the date time format used when serializing in the ApiClient
332+
/// Gets or sets the date time format used when serializing in the ApiClient
333333
/// By default, it's set to ISO 8601 - "o", for others see:
334334
/// https://msdn.microsoft.com/en-us/library/az4se3k1(v=vs.110).aspx
335335
/// and https://msdn.microsoft.com/en-us/library/8kb3ddd4(v=vs.110).aspx

samples/client/petstore/csharp/SwaggerClientNetCoreProject/src/IO.Swagger/Client/Configuration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ public virtual string TempFolderPath
324324
}
325325

326326
/// <summary>
327-
/// Gets or sets the the date time format used when serializing in the ApiClient
327+
/// Gets or sets the date time format used when serializing in the ApiClient
328328
/// By default, it's set to ISO 8601 - "o", for others see:
329329
/// https://msdn.microsoft.com/en-us/library/az4se3k1(v=vs.110).aspx
330330
/// and https://msdn.microsoft.com/en-us/library/8kb3ddd4(v=vs.110).aspx

0 commit comments

Comments
 (0)