aboutsummaryrefslogtreecommitdiff
path: root/service
diff options
context:
space:
mode:
authorArend v. Reinersdorff <undetermined_user>2017-05-25 15:25:18 -0700
committerRon Shapiro <shapiro.rd@gmail.com>2017-05-30 12:28:16 -0400
commit6a4da28c4a502f7a9743d7bc77a4df4189d65f14 (patch)
tree86db5f50882e83fd5a5c37140334ffdb7a101b05 /service
parent0a8470b78e9a173775de0f3ab10fba81e3da106f (diff)
downloadauto-6a4da28c4a502f7a9743d7bc77a4df4189d65f14.tar.gz
Fix `@AutoService` example to reflect the fact that javax.annotation.processing.Processor is an interface, not a class.
Closes https://github.com/google/auto/pull/495 ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=157161342
Diffstat (limited to 'service')
-rw-r--r--service/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/service/README.md b/service/README.md
index 8ba0714b..1b68f423 100644
--- a/service/README.md
+++ b/service/README.md
@@ -23,7 +23,7 @@ package foo.bar;
import javax.annotation.processing.Processor;
@AutoService(Processor.class)
-final class MyProcessor extends Processor {
+final class MyProcessor implements Processor {
// …
}
```