Skip to content

Commit daaf04c

Browse files
committed
Update tests.
1 parent 6f779d2 commit daaf04c

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ Descriptions can also be associated with bean types, records, and enums:
282282

283283
```java
284284
@Table("item")
285-
@Description("Represents an item in the catalog.")
285+
@Description("Represents a catalog item.")
286286
public interface Item {
287287
@Name("id")
288288
@Column("id")

kilo-test/src/main/java/org/httprpc/kilo/test/Actor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
import org.httprpc.kilo.sql.Table;
2323

2424
@Table("actor")
25-
@Description("Represents an actor.")
25+
@Description("Represents a film actor.")
2626
public interface Actor {
2727
@Name("id")
2828
@Column("actor_id")

kilo-test/src/main/java/org/httprpc/kilo/test/Item.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
import org.httprpc.kilo.sql.Table;
2424

2525
@Table("item")
26-
@Description("Represents an item in the catalog.")
26+
@Description("Represents a catalog item.")
2727
public interface Item {
2828
@Name("id")
2929
@Column("id")

kilo-test/src/main/java/org/httprpc/kilo/test/ItemDetail.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
import java.util.Date;
2222

23-
@Description("Represents detailed information about an item in the catalog.")
23+
@Description("Represents detailed information about a catalog item.")
2424
public interface ItemDetail extends Item {
2525
@Column("size")
2626
@Description("The item's size.")

kilo-test/src/test/resources/org/httprpc/kilo/test/catalog.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@
219219
"path": "/catalog",
220220
"structures": [
221221
{
222-
"description": "Represents an item in the catalog.",
222+
"description": "Represents a catalog item.",
223223
"name": "Item",
224224
"properties": [
225225
{
@@ -272,7 +272,7 @@
272272
]
273273
},
274274
{
275-
"description": "Represents detailed information about an item in the catalog.",
275+
"description": "Represents detailed information about a catalog item.",
276276
"name": "ItemDetail",
277277
"properties": [
278278
{

0 commit comments

Comments
 (0)