Skip to content

Commit

Permalink
corrected 9 broken cross-references in documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
antoinesd authored and jharting committed Oct 9, 2014
1 parent dec4acf commit c8c423b
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions docs/reference/src/main/asciidoc/beans.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ NOTE: The bean types of a session bean include local interfaces and the bean
class local view (if any). EJB remote interfaces are not considered bean
types of a session bean. You can't inject an EJB using its remote
interface unless you define a _resource_, which we'll meet in
<<_java_ee_component_environment_resources>>.
<<resources>>.

Bean types may be restricted to an explicit set by annotating the bean
with the `@Typed` annotation and listing the classes that should be bean
Expand Down Expand Up @@ -202,7 +202,7 @@ it has the default qualifier, `@Default`.
That's not quite the end of the story. CDI also defines a simple
_resolution rule_ that helps the container decide what to do if there is
more than one bean that satisfies a particular contract. We'll get into
the details in <<_dependency_injection_and_programmatic_lookup>>.
the details in <<injection>>.

==== Scope

Expand Down Expand Up @@ -234,7 +234,7 @@ special scope called the _dependent pseudo-scope_. Beans with this scope
live to serve the object into which they were injected, which means
their lifecycle is bound to the lifecycle of that object.

We'll talk more about scopes in <<_scopes_and_contexts>>.
We'll talk more about scopes in <<scopescontexts>>.

==== EL name

Expand Down Expand Up @@ -366,7 +366,7 @@ is disabled. We can enable an interceptor using the CDI deployment
descriptor `META-INF/beans.xml` of the jar or Java EE module. This is
also where we specify the interceptor ordering.

We'll discuss interceptors, and their cousins, decorators, in <<_interceptors>> and <<_decorators>>.
We'll discuss interceptors, and their cousins, decorators, in <<interceptors>> and <<decorators>>.

=== What kinds of classes are beans?

Expand Down Expand Up @@ -612,5 +612,5 @@ A producer field is really just a shortcut that lets us avoid writing a
useless getter method. However, in addition to convenience, producer
fields serve a specific purpose as an adaptor for Java EE component
environment injection, but to learn more about that, you'll have to wait
until <<_java_ee_component_environment_resources>>. Because we can't wait to get
until <<resources>>. Because we can't wait to get
to work on some examples.
2 changes: 1 addition & 1 deletion docs/reference/src/main/asciidoc/configure.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ CDI specification does not support regular expression patterns and `!`
character to invert the activation condition.

All the configuration is done in the `beans.xml` file. For more
information see <<_packaging_and_deployment>>.
information see <<packaging-and-deployment>>.

[source.XML, xml]
------------------------------------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion docs/reference/src/main/asciidoc/injection.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ for producer methods:

This is a case where the `@Inject` annotation _is not_ required at the
injection point. The same is true for observer methods (which we'll meet
in <<_events>>) and disposer methods.
in <<events>>) and disposer methods.

=== What gets injected

Expand Down
2 changes: 1 addition & 1 deletion docs/reference/src/main/asciidoc/part5.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ portable extensions to CDI.

If you want to get started quickly using Weld (and, in turn, CDI) with
WildFly, GlassFish or Tomcat and experiment with one of the examples,
take a look at <<_getting_started_with_weld>>. Otherwise read on for a
take a look at <<gettingstarted>>. Otherwise read on for a
exhaustive discussion of using Weld in all the environments and application
servers it supports and the Weld extensions.
--
Expand Down

0 comments on commit c8c423b

Please sign in to comment.