Skip to content

Commit

Permalink
small docu fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
zdenek-jonas committed Dec 21, 2023
1 parent 9346288 commit c336ec3
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 9 deletions.
4 changes: 0 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ tmp/
*.swp
*~.nib
local.properties
.settings/
.loadpath
.recommenders
.externalToolBuilders/
Expand All @@ -72,7 +71,6 @@ local.properties

# NetBeans
nbproject/private/
build/
nbbuild/
dist/
nbdist/
Expand All @@ -88,5 +86,3 @@ profile
.asciidoctor/
.asciidoctorconfig.adoc

# Vim
*.swp
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ public default void putAll(final Map<? extends K, ? extends V> map)
* Short for <code>putAll(map, replaceExistingValues, true)</code>
*
* @param map entries to add
* @param replaceExistingValues if values with same keys should be replaces
* @param replaceExistingValues if values with same keys should be replaced
* @see #putAll(Map, boolean, boolean)
*/
public default void putAll(
Expand All @@ -125,7 +125,7 @@ public default void putAll(
* Adds all entries to this cache.
*
* @param map entries to add
* @param replaceExistingValues if values with same keys should be replaces
* @param replaceExistingValues if values with same keys should be replaced
* @param useWriteThrough enable write through mode for this operation
*/
public void putAll(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ protected CacheConfiguration<Object, Object> resolveCacheConfiguration(
CacheConfiguration.load(Object.class, Object.class);
return configuration != null
? configuration
// 4. Otherwise use simple default configuration
// 4. Otherwise, use simple default configuration
: CacheConfiguration.Builder(Object.class, Object.class)
.storeByReference()
.build();
Expand Down
2 changes: 1 addition & 1 deletion docs/modules/storage/pages/storing-data/best-practice.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

== Storing Hidden Encapsulated Objects

In some cases, it can be necessary to store modified encapsulated objects that cannot be a accessed from your code.
In some cases, it can be necessary to store modified encapsulated objects that cannot be accessed from your code.

[source, java]
----
Expand Down
2 changes: 1 addition & 1 deletion examples/spring-boot3-simple/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ http://localhost:8080/
```

## Using App rest api
This examples use Curl for Linux/MacOS. You can use any other tool for sending HTTP requests.
This examples use Curl for Linux/macOS. You can use any other tool for sending HTTP requests.
Load sample data. Without this step, the application will not contain any data. It is not mandatory to execute this step, but without it you will have to add all your data manually.
```shell
curl --location --request POST 'http://localhost:8080/init' \
Expand Down

0 comments on commit c336ec3

Please sign in to comment.