Skip to content

Commit 39c72ab

Browse files
committed
Update README.md.
1 parent 5087306 commit 39c72ab

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -686,7 +686,7 @@ templateEncoder.write(new BeanAdapter(root), System.out);
686686
public static <T> T adapt(Object value, Type type) { ... }
687687
```
688688

689-
Values are adapted as described in the class documentation. For example, given this interface:
689+
For example, given this interface:
690690

691691
```java
692692
public interface TreeNode {
@@ -709,6 +709,8 @@ System.out.println(root.getChildren().get(0).getName()); // "Winter"
709709
System.out.println(root.getChildren().get(0).getChildren().get(0).getName()); // "January"
710710
```
711711

712+
See the class documentation for more information.
713+
712714
### Custom Property Keys
713715
The `Key` annotation can be used to associate a custom name with a bean property. The provided value will be used in place of the property name when reading or writing property values. For example:
714716

0 commit comments

Comments
 (0)