From b04aa344bc23075d89b585cf22191f01e20ce814 Mon Sep 17 00:00:00 2001 From: Renzo Kottmann Date: Sat, 20 Jun 2020 16:41:19 +0000 Subject: [PATCH] Minor typos and grammer --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 385e94f..be743c4 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ The validator distribution contains the following artifacts: The validator is just an engine and does not know anything about XML Documents and has no own validation rules. Validation rules and details are defined in [validation scenarios](docs/configurations.md) which are used to fully configure the validation process. -All configurations are self-contained modules and deployed and developed on their own. +All configurations are self-contained modules which are deployed and developed on their own. ### Third Party Validation Configurations @@ -59,7 +59,8 @@ A concrete example with a specific validator configuration can be found on ### Application User Interface (API / embedded usage) -The validator can also be used in own Java Applications via the API. Usage would be something like this: +The validator can also be used in own Java Applications via the API. An example use of the API as follows: + ```java Path scenarios = Paths.get("scenarios.xml"); Configuration config = Configuration.load(scenarios.toUri()); @@ -70,6 +71,7 @@ Result validationResult = validator.checkInput(document); // examine the result here ``` + The [API documentation](./docs/api.md) shows further configuration options. ### Daemon-Mode