Skip to content

Commit

Permalink
fix typo:missing a "j" in line 361 of extend.asciidoc
Browse files Browse the repository at this point in the history
  • Loading branch information
subaochen authored and mkouba committed Oct 25, 2016
1 parent dd0c370 commit 33890fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/reference/src/main/asciidoc/extend.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ There's an easy way to find out what beans exist in the application:

[source.JAVA, java]
-------------------------------------------------------------------------------------------
Set<Bean<?>> allBeans = beanManager.getBeans(Obect.class, new AnnotationLiteral<Any>() {});
Set<Bean<?>> allBeans = beanManager.getBeans(Object.class, new AnnotationLiteral<Any>() {});
-------------------------------------------------------------------------------------------

The `Bean` interface makes it possible for a portable extension to
Expand Down

0 comments on commit 33890fb

Please sign in to comment.