Skip to content

Commit

Permalink
Fix errors in Kopy example
Browse files Browse the repository at this point in the history
The `numbers` property was missing from the `Cat` class.
  • Loading branch information
nesk authored and JavierSegoviaCordoba committed Aug 31, 2024
1 parent 1ae70fd commit 8f71e01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ data class House(val squareMeters: Int, val kitchen: Kitchen)
data class Kitchen(val cat: Cat, val squareMeters: Int)

@Kopy
data class Cat(val name: String, val age: Int)
data class Cat(val name: String, val age: Int, val numbers: List<Int>)
```

## Features
Expand Down

0 comments on commit 8f71e01

Please sign in to comment.