Skip to content
This repository has been archived by the owner on Aug 8, 2023. It is now read-only.

Commit

Permalink
[ios, macos] Corrected has/!has correspondence
Browse files Browse the repository at this point in the history
  • Loading branch information
1ec5 committed Dec 25, 2016
1 parent 8f07f4f commit 41190dc
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions platform/darwin/docs/guides/For Style Authors.md.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -280,8 +280,8 @@ predicate format string:
In style JSON | In the format string
--------------|---------------------
`has` | `CONTAINS`
`!has` | `NOT(… CONTAINS …)`
`has` | `!= nil`
`!has` | `== nil`
`==` | `==`
`!=` | `!=`
`>` | `>`
Expand Down
4 changes: 2 additions & 2 deletions platform/ios/docs/guides/For Style Authors.md
Original file line number Diff line number Diff line change
Expand Up @@ -259,8 +259,8 @@ predicate format string:

In style JSON | In the format string
--------------|---------------------
`has` | `CONTAINS`
`!has` | `NOT(… CONTAINS …)`
`has` | `!= nil`
`!has` | `== nil`
`==` | `==`
`!=` | `!=`
`>` | `>`
Expand Down
4 changes: 2 additions & 2 deletions platform/macos/docs/guides/For Style Authors.md
Original file line number Diff line number Diff line change
Expand Up @@ -249,8 +249,8 @@ predicate format string:

In style JSON | In the format string
--------------|---------------------
`has` | `CONTAINS`
`!has` | `NOT(… CONTAINS …)`
`has` | `!= nil`
`!has` | `== nil`
`==` | `==`
`!=` | `!=`
`>` | `>`
Expand Down

0 comments on commit 41190dc

Please sign in to comment.