From 21389a00ca4011ade7ac869d6b854cc60cf2a4c0 Mon Sep 17 00:00:00 2001 From: Steven Kirk Date: Sat, 19 Sep 2015 20:05:23 +0200 Subject: [PATCH] Use correct character for child selector. --- docs/styles.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/styles.md b/docs/styles.md index 373a0e86db..755f097295 100644 --- a/docs/styles.md +++ b/docs/styles.md @@ -81,7 +81,7 @@ Named controls can be selected using `#` as in CSS, e.g. `Button#Name`. As with CSS, you can select children and descendants: -- `StackPanel < Button#Foo` selects a `Button` named `"Foo"` that is the child +- `StackPanel > Button#Foo` selects a `Button` named `"Foo"` that is the child of a `StackPanel`. - `StackPanel Button.foo` selects all `Button`s with the `foo` class that are descendants of a `StackPanel`.