Repository: tomee Updated Branches: refs/heads/master 388460ff9 -> c5fca2f9c
fixed cdi-basic-typos Project: http://git-wip-us.apache.org/repos/asf/tomee/repo Commit: http://git-wip-us.apache.org/repos/asf/tomee/commit/60c108a3 Tree: http://git-wip-us.apache.org/repos/asf/tomee/tree/60c108a3 Diff: http://git-wip-us.apache.org/repos/asf/tomee/diff/60c108a3 Branch: refs/heads/master Commit: 60c108a395ca00a09f9ffe20d90d22d884a41430 Parents: 51a07de Author: CesarHernandezGt <[email protected]> Authored: Mon Nov 19 20:25:22 2018 -0600 Committer: CesarHernandezGt <[email protected]> Committed: Mon Nov 19 20:25:22 2018 -0600 ---------------------------------------------------------------------- examples/cdi-basic/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tomee/blob/60c108a3/examples/cdi-basic/README.md ---------------------------------------------------------------------- diff --git a/examples/cdi-basic/README.md b/examples/cdi-basic/README.md index a103135..858f6da 100644 --- a/examples/cdi-basic/README.md +++ b/examples/cdi-basic/README.md @@ -15,7 +15,7 @@ exactly what scopes are for. # Example -In this example we have an `@Stateless` bean `Course` with an `@Inject` reference to an +In this example, we have an `@Stateless` bean `Course` with an `@Inject` reference to an object of type `Faculty`. When `Course` is created, the container will also create an instance of `Faculty`. The `@PostConstruct` will be called on the `Faculty`, then the `Faculty` instance will be injected into the `Course` bean. Finally, the @@ -26,7 +26,7 @@ The `CourseTest` test case drives this creation process by having `Course` injec into it in its `@Setup` method. By the time our `@Test` method is invoked, all the real work should be done and we should be ready to go. In the test case we do some basic asserts to ensure everything was constructed, all `@PostConstruct` methods -called and everyting injected. +called and everything injected. ## Faculty <small>a basic injectable pojo</small>
