Skip to content

Commit

Permalink
Update error examples for method and inherited accessors in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
MateuszKubuszok committed Mar 29, 2024
1 parent 1475cab commit 3bb4126
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/docs/supported-transformations.md
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@ If the flag was enabled in the implicit config it can be disabled with `.disable
// a: java.lang.String - no accessor named a in source type Source
// b: scala.Int - no accessor named b in source type Source
//
// There are methods in Source that might be used as accessors for `a`, `b` fields in Target. Consider using `.enableMethodAccessors`.
// There are methods in Source that might be used as accessors for a (e.g. a), b (e.g. b), constructor arguments/setters in Target. Consider using .enableMethodAccessors.
//
// Consult https://chimney.readthedocs.io for usage examples.
```
Expand Down Expand Up @@ -495,7 +495,7 @@ If the flag was enabled in the implicit config it can be disabled with `.enableI
// Target
// a: java.lang.String - no accessor named a in source type Source
//
// There are methods in Source that might be used as accessors for `a` fields in Target. Consider using `.enableMethodAccessors`.
// There are inherited definitions in Source that might be used as accessors for a (e.g. a), the constructor argument/setter in Target. Consider using .enableInheritedAccessors.
//
// Consult https://chimney.readthedocs.io for usage examples.
```
Expand Down

0 comments on commit 3bb4126

Please # to comment.