From cb3f330696e7502d64fe7b9a24e624cce2575ffd Mon Sep 17 00:00:00 2001 From: Nicolas Jouannem Date: Sat, 21 Mar 2015 21:28:07 +0100 Subject: [PATCH] Corrected two typos. Signed-off-by: Nicolas Jouannem --- scheduler/filter/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scheduler/filter/README.md b/scheduler/filter/README.md index b356642150..a6438af6f6 100644 --- a/scheduler/filter/README.md +++ b/scheduler/filter/README.md @@ -183,11 +183,11 @@ For example, * `constraint:node==/node\d/` will match all nodes with `node` + 1 digit. * `constraint:node!=/node-[01]/` will match all nodes, except `node-0` and `node-1`. * `constraint:node!=/foo\[bar\]/` will match all nodes, except `foo[bar]`. You can see the use of escape characters here. -* `constraint:node==/(?i)node1/` will match node `node1` case-insensitive. So 'NoDe1' or 'NODE1' will also matched. +* `constraint:node==/(?i)node1/` will match node `node1` case-insensitive. So 'NoDe1' or 'NODE1' will also match. ## Port Filter -With this filter, `ports` are considered as a unique resource. +With this filter, `ports` are considered as unique resources. ``` $ docker run -d -p 80:80 nginx