Skip to content

Commit 8b87f1f

Browse files
committed
implement CR feedback and update samples
1 parent b725024 commit 8b87f1f

63 files changed

Lines changed: 154 additions & 154 deletions

File tree

Some content is hidden

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

samples/client/others/kotlin-jvm-okhttp-non-ascii-headers/docs/PetApi.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ Configure petstore_auth:
113113

114114
<a id="findPetsByStatus"></a>
115115
# **findPetsByStatus**
116-
> kotlin.collections.List<Pet> findPetsByStatus(status)
116+
> kotlin.collections.List&lt;Pet&gt; findPetsByStatus(status)
117117
118118
Finds Pets by status
119119

@@ -161,7 +161,7 @@ Configure petstore_auth:
161161

162162
<a id="findPetsByTags"></a>
163163
# **findPetsByTags**
164-
> kotlin.collections.List<Pet> findPetsByTags(tags)
164+
> kotlin.collections.List&lt;Pet&gt; findPetsByTags(tags)
165165
166166
Finds Pets by tags
167167

samples/client/others/kotlin-jvm-okhttp-non-ascii-headers/docs/StoreApi.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ All URIs are relative to *http://petstore.swagger.io/v2*
1616
1717
Delete purchase order by ID
1818

19-
For valid response try integer IDs with value < 1000. Anything above 1000 or nonintegers will generate API errors
19+
For valid response try integer IDs with value &lt; 1000. Anything above 1000 or nonintegers will generate API errors
2020

2121
### Example
2222
```kotlin
@@ -57,7 +57,7 @@ No authorization required
5757

5858
<a id="getInventory"></a>
5959
# **getInventory**
60-
> kotlin.collections.Map<kotlin.String, kotlin.Int> getInventory()
60+
> kotlin.collections.Map&lt;kotlin.String, kotlin.Int&gt; getInventory()
6161
6262
Returns pet inventories by status
6363

@@ -107,7 +107,7 @@ Configure api_key:
107107
108108
Find purchase order by ID
109109

110-
For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
110+
For valid response try integer IDs with value &lt;= 5 or &gt; 10. Other values will generate exceptions
111111

112112
### Example
113113
```kotlin

samples/client/petstore/kotlin-explicit/docs/PetApi.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ Configure petstore_auth:
108108

109109
<a id="findPetsByStatus"></a>
110110
# **findPetsByStatus**
111-
> kotlin.collections.List<Pet> findPetsByStatus(status)
111+
> kotlin.collections.List&lt;Pet&gt; findPetsByStatus(status)
112112
113113
Finds Pets by status
114114

@@ -156,7 +156,7 @@ Configure petstore_auth:
156156

157157
<a id="findPetsByTags"></a>
158158
# **findPetsByTags**
159-
> kotlin.collections.List<Pet> findPetsByTags(tags)
159+
> kotlin.collections.List&lt;Pet&gt; findPetsByTags(tags)
160160
161161
Finds Pets by tags
162162

samples/client/petstore/kotlin-explicit/docs/StoreApi.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ All URIs are relative to *http://petstore.swagger.io/v2*
1616
1717
Delete purchase order by ID
1818

19-
For valid response try integer IDs with value < 1000. Anything above 1000 or nonintegers will generate API errors
19+
For valid response try integer IDs with value &lt; 1000. Anything above 1000 or nonintegers will generate API errors
2020

2121
### Example
2222
```kotlin
@@ -57,7 +57,7 @@ No authorization required
5757

5858
<a id="getInventory"></a>
5959
# **getInventory**
60-
> kotlin.collections.Map<kotlin.String, kotlin.Int> getInventory()
60+
> kotlin.collections.Map&lt;kotlin.String, kotlin.Int&gt; getInventory()
6161
6262
Returns pet inventories by status
6363

@@ -107,7 +107,7 @@ Configure api_key:
107107
108108
Find purchase order by ID
109109

110-
For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
110+
For valid response try integer IDs with value &lt;= 5 or &gt; 10. Other values will generate exceptions
111111

112112
### Example
113113
```kotlin

samples/client/petstore/kotlin-gson/docs/PetApi.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ Configure petstore_auth:
113113

114114
<a id="findPetsByStatus"></a>
115115
# **findPetsByStatus**
116-
> kotlin.collections.List<Pet> findPetsByStatus(status)
116+
> kotlin.collections.List&lt;Pet&gt; findPetsByStatus(status)
117117
118118
Finds Pets by status
119119

@@ -161,7 +161,7 @@ Configure petstore_auth:
161161

162162
<a id="findPetsByTags"></a>
163163
# **findPetsByTags**
164-
> kotlin.collections.List<Pet> findPetsByTags(tags)
164+
> kotlin.collections.List&lt;Pet&gt; findPetsByTags(tags)
165165
166166
Finds Pets by tags
167167

samples/client/petstore/kotlin-gson/docs/StoreApi.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ All URIs are relative to *http://petstore.swagger.io/v2*
1616
1717
Delete purchase order by ID
1818

19-
For valid response try integer IDs with value < 1000. Anything above 1000 or nonintegers will generate API errors
19+
For valid response try integer IDs with value &lt; 1000. Anything above 1000 or nonintegers will generate API errors
2020

2121
### Example
2222
```kotlin
@@ -57,7 +57,7 @@ No authorization required
5757

5858
<a id="getInventory"></a>
5959
# **getInventory**
60-
> kotlin.collections.Map<kotlin.String, kotlin.Int> getInventory()
60+
> kotlin.collections.Map&lt;kotlin.String, kotlin.Int&gt; getInventory()
6161
6262
Returns pet inventories by status
6363

@@ -107,7 +107,7 @@ Configure api_key:
107107
108108
Find purchase order by ID
109109

110-
For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
110+
For valid response try integer IDs with value &lt;= 5 or &gt; 10. Other values will generate exceptions
111111

112112
### Example
113113
```kotlin

samples/client/petstore/kotlin-jackson/docs/PetApi.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ Configure petstore_auth:
108108

109109
<a id="findPetsByStatus"></a>
110110
# **findPetsByStatus**
111-
> kotlin.collections.List<Pet> findPetsByStatus(status)
111+
> kotlin.collections.List&lt;Pet&gt; findPetsByStatus(status)
112112
113113
Finds Pets by status
114114

@@ -156,7 +156,7 @@ Configure petstore_auth:
156156

157157
<a id="findPetsByTags"></a>
158158
# **findPetsByTags**
159-
> kotlin.collections.List<Pet> findPetsByTags(tags)
159+
> kotlin.collections.List&lt;Pet&gt; findPetsByTags(tags)
160160
161161
Finds Pets by tags
162162

samples/client/petstore/kotlin-jackson/docs/StoreApi.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ All URIs are relative to *http://petstore.swagger.io/v2*
1616
1717
Delete purchase order by ID
1818

19-
For valid response try integer IDs with value < 1000. Anything above 1000 or nonintegers will generate API errors
19+
For valid response try integer IDs with value &lt; 1000. Anything above 1000 or nonintegers will generate API errors
2020

2121
### Example
2222
```kotlin
@@ -57,7 +57,7 @@ No authorization required
5757

5858
<a id="getInventory"></a>
5959
# **getInventory**
60-
> kotlin.collections.Map<kotlin.String, kotlin.Int> getInventory()
60+
> kotlin.collections.Map&lt;kotlin.String, kotlin.Int&gt; getInventory()
6161
6262
Returns pet inventories by status
6363

@@ -107,7 +107,7 @@ Configure api_key:
107107
108108
Find purchase order by ID
109109

110-
For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
110+
For valid response try integer IDs with value &lt;= 5 or &gt; 10. Other values will generate exceptions
111111

112112
### Example
113113
```kotlin

samples/client/petstore/kotlin-json-request-string/docs/PetApi.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ Configure petstore_auth:
108108

109109
<a id="findPetsByTags"></a>
110110
# **findPetsByTags**
111-
> kotlin.collections.List<Pet> findPetsByTags(tags)
111+
> kotlin.collections.List&lt;Pet&gt; findPetsByTags(tags)
112112
113113
Finds Pets by tags
114114

@@ -156,7 +156,7 @@ Configure petstore_auth:
156156

157157
<a id="getAllPets"></a>
158158
# **getAllPets**
159-
> kotlin.collections.List<Pet> getAllPets(lastUpdated)
159+
> kotlin.collections.List&lt;Pet&gt; getAllPets(lastUpdated)
160160
161161
Get all pets
162162

samples/client/petstore/kotlin-json-request-string/docs/StoreApi.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ All URIs are relative to *http://petstore.swagger.io/v2*
1616
1717
Delete purchase order by ID
1818

19-
For valid response try integer IDs with value < 1000. Anything above 1000 or nonintegers will generate API errors
19+
For valid response try integer IDs with value &lt; 1000. Anything above 1000 or nonintegers will generate API errors
2020

2121
### Example
2222
```kotlin
@@ -57,7 +57,7 @@ No authorization required
5757

5858
<a id="getInventory"></a>
5959
# **getInventory**
60-
> kotlin.collections.Map<kotlin.String, kotlin.Int> getInventory()
60+
> kotlin.collections.Map&lt;kotlin.String, kotlin.Int&gt; getInventory()
6161
6262
Returns pet inventories by status
6363

@@ -107,7 +107,7 @@ Configure api_key:
107107
108108
Find purchase order by ID
109109

110-
For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
110+
For valid response try integer IDs with value &lt;= 5 or &gt; 10. Other values will generate exceptions
111111

112112
### Example
113113
```kotlin

0 commit comments

Comments
 (0)