Skip to content

Commit

Permalink
Fix namespace usage from pf.eql to p.eql
Browse files Browse the repository at this point in the history
  • Loading branch information
wilkerlucio committed Aug 19, 2021
1 parent 69bc34a commit c7b694b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/resolvers.mdx
Expand Up @@ -507,7 +507,7 @@ To illustrate, lets start with a resolver that pulls todo from some mock memory
(def env (pci/register todos-resolver))

; list all todos
(pf.eql/process env [::todos])
(p.eql/process env [::todos])
```

:::note
Expand All @@ -523,7 +523,7 @@ for example:

```clojure
; list undone todos:
(pf.eql/process env ['(::todos {::todo-done? false})])
(p.eql/process env ['(::todos {::todo-done? false})])
```

If we just ran the previous code, nothing happens. To make this work, we need to use
Expand Down Expand Up @@ -555,7 +555,7 @@ on it:
(def env (pci/register todos-resolver))

; list undone todos
(pf.eql/process env
(p.eql/process env
'[(::todos {::todo-done? false})])
```

Expand Down

0 comments on commit c7b694b

Please sign in to comment.