forest icon indicating copy to clipboard operation
forest copied to clipboard

Typo in docs

Open escherize opened this issue 9 years ago • 0 comments

Howdy, I'm evaluating this library and found you have an error in your docs in the Complex Selectors section here:

(defstylesheet styles
  [(descendant .container .element)
    {:padding-bottom "16px"}]
  ;; Translated into the selector ".container .element"

  [(> .parent .immediate-child)
   {:font-size "16px"}]
  ;; Translated into the selector ".container > .element" ;;<-------------
)
```clojure

Cheers

escherize avatar Feb 16 '17 23:02 escherize