Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Polish docs #3250

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/src/docs/asciidoc/user/xml.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ It requires the `directory` location where data needs be stored on disk.

=== `<cache>` elements

A `<cache>` element represent a `Cache` instance that will be created and managed by the `CacheManager`.
A `<cache>` element represents a `Cache` instance that will be created and managed by the `CacheManager`.
Each `<cache>` requires the `alias` attribute, used at runtime to retrieve the corresponding `Cache<K, V>` instance using
the `org.ehcache.CacheManager.getCache(String, Class<K>, Class<V>)` method. The optional `uses-template` attribute lets you reference
a `<cache-template>` element's `name` attribute. See the <<cache-template-elements,cache-template section>>
Expand Down
2 changes: 1 addition & 1 deletion ehcache-107/src/test/resources/ehcache-example.xml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@

<!--
OPTIONAL
A <cache-template> defines a named template that can be used be <cache> definitions in this same file
A <cache-template> defines a named template that can be used in <cache> definitions in this same file
They have all the same property as the <cache> elements above
-->
<ehcache:cache-template name="myDefaultTemplate">
Expand Down
Loading