This is an automated email from the ASF dual-hosted git repository.
bvahdat pushed a commit to branch uuid-generator
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/uuid-generator by this push:
new 2c9b5b2 correct typo
2c9b5b2 is described below
commit 2c9b5b2d11bd7cba8c96ec164f284d26ebb82c72
Author: Babak Vahdat <[email protected]>
AuthorDate: Wed Sep 9 16:12:22 2020 +0200
correct typo
---
docs/user-manual/modules/ROOT/pages/uuidgenerator.adoc | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/docs/user-manual/modules/ROOT/pages/uuidgenerator.adoc
b/docs/user-manual/modules/ROOT/pages/uuidgenerator.adoc
index 7b13b09..68cfb0d 100644
--- a/docs/user-manual/modules/ROOT/pages/uuidgenerator.adoc
+++ b/docs/user-manual/modules/ROOT/pages/uuidgenerator.adoc
@@ -52,9 +52,9 @@ Camel comes with three implementations of
* `org.apache.camel.support.SimpleUuidGenerator` - This implementation uses
internally a `java.util.concurrent.atomic.AtomicLong` and increases the
ID for every call by one. Starting with 1 as the first id.
-* `org.apache.camel.support.VanillaUuidGenerator` - This implementation
-uses a counter which increments by one. This generator is not unique per host
-or JVM, as its private per CamelContext.
+* `org.apache.camel.support.VanillaUuidGenerator` - This implementation uses
+a random generated seed and a counter which increments by one. This generator
+is not unique per host or JVM.
* `org.apache.camel.impl.engine.DefaultUuidGenerator` - This implementation
uses a fast unique UUID generation that is cluster safe (similar to uuid
generator in ActiveMQ). This is the default implementation in use by Camel.