Skip to content

Commit

Permalink
put highlight in the spec
Browse files Browse the repository at this point in the history
Signed-off-by: Otavio Santana <otaviopolianasantana@gmail.com>
  • Loading branch information
otaviojava committed Nov 16, 2022
1 parent dd306e2 commit e9c848b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public ColumnFamilyManager getManager() {
}
----

You can work with several column database instances through CDI qualifier. To identify each database instance, make a ColumnManager visible for CDI by putting the `@Produces` and the `@Database` annotations in the method.
You can work with several column database instances through CDI qualifier. To identify each database instance, make a `ColumnManager` visible for CDI by putting the `@Produces` and the `@Database` annotations in the method.

[source,java]
----
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ To use a document template, just follow the CDI style and place an `@Inject` ann
private DocumentTemplate template;
----

You can work with several document database instances through CDI qualifier. To identify each database instance, make a DocumentManager visible for CDI by putting the `@Produces` and the `@Database` annotations in the method.
You can work with several document database instances through CDI qualifier. To identify each database instance, make a `DocumentManager` visible for CDI by putting the `@Produces` and the `@Database` annotations in the method.

[source,java]
----
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ To use a key-value template, just follow the CDI style and precede the field wit
private KeyValueTemplate template;
----

You can work with several key-value database instances through CDI qualifier. To identify each database instance, make a BucketManager visible for CDI by putting the `@Produces` and the `@Database` annotations in the method.
You can work with several key-value database instances through CDI qualifier. To identify each database instance, make a `BucketManager` visible for CDI by putting the `@Produces` and the `@Database` annotations in the method.

[source,java]
----
Expand Down

0 comments on commit e9c848b

Please sign in to comment.