diff --git a/sdks/java/extensions/euphoria/euphoria-core/src/main/java/cz/seznam/euphoria/core/client/io/SchemeBasedIORegistry.java b/sdks/java/extensions/euphoria/euphoria-core/src/main/java/cz/seznam/euphoria/core/client/io/SchemeBasedIORegistry.java index 1ee41afd12961..d42359d090c02 100644 --- a/sdks/java/extensions/euphoria/euphoria-core/src/main/java/cz/seznam/euphoria/core/client/io/SchemeBasedIORegistry.java +++ b/sdks/java/extensions/euphoria/euphoria-core/src/main/java/cz/seznam/euphoria/core/client/io/SchemeBasedIORegistry.java @@ -25,10 +25,10 @@ * Given a configuration bundle and a URI, this registry creates an associated * data source as follows: *
    - *
  1. Extra the schema from the given URI
  2. + *
  3. Extract the schema from the given URI
  4. *
  5. Lookup the value under the key "{@link #SCHEME_SOURCE_PREFIX} + schema" where * schema represents the schema value extracted from the given URI
  6. - *
  7. If no such value is define, fail.
  8. + *
  9. If no such value is defined, just fail.
  10. *
  11. Otherwise validate that the value names an existing class which implements * {@link DataSourceFactory}.
  12. *
  13. Instantiate the class using its default public constructor.