This is an automated email from the ASF dual-hosted git repository.
clebertsuconic pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/activemq-artemis.git
The following commit(s) were added to refs/heads/master by this push:
new 5438063 NO-JIRA Fix documentation typos
new e2b71b1 This closes #2578
5438063 is described below
commit 54380633e579e13949ce240a3fd61707641a25b0
Author: Abdullah Asaad <[email protected]>
AuthorDate: Fri Mar 1 14:04:10 2019 -0700
NO-JIRA Fix documentation typos
---
docs/user-manual/en/examples.md | 2 +-
docs/user-manual/en/filter-expressions.md | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/docs/user-manual/en/examples.md b/docs/user-manual/en/examples.md
index 7cd88ff..5167957 100644
--- a/docs/user-manual/en/examples.md
+++ b/docs/user-manual/en/examples.md
@@ -27,7 +27,7 @@ example directory).
You can use the profile `-Pexamples` to run multiple examples under any example
tree.
-For each server, you will have a created server under `./target/server0` (some
+For each example, you will have a created server under `./target/server0` (some
examples use more than one server).
You have the option to prevent the example from starting the server (e.g. if
diff --git a/docs/user-manual/en/filter-expressions.md
b/docs/user-manual/en/filter-expressions.md
index 425b5c1..40eb225 100644
--- a/docs/user-manual/en/filter-expressions.md
+++ b/docs/user-manual/en/filter-expressions.md
@@ -56,7 +56,7 @@ property set to String `21` then the following selector
should not match
it: `age > 18`. Since Apache ActiveMQ Artemis supports STOMP clients which
can only send messages with string properties, that restriction is a bit
limiting. Therefore, if you want your filter expressions to auto-convert
String
-properties the the appropriate number type, just prefix it with
+properties to the appropriate number type, just prefix it with
`convert_string_expressions:`. If you changed the filter expression in the
previous example to be `convert_string_expressions:age > 18`, then it would
match the aforementioned message.