Skip to content

Commit a16648c

Browse files
committed
Hook test, and README update
1 parent 3e65968 commit a16648c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,12 +144,12 @@ Our library will automatically request for results 5 products at a time.
144144

145145

146146
### Explore Price Histories
147-
For this example, we are going to look at a particular product that is sold by select mercgants and whose price is >= USD 30 and seen after a specific date (specified as a UNIX timestamp).
147+
For this example, we are going to look at a particular product that is sold by select mercants and has a price of >= USD 30 and seen after a specific date (specified as a UNIX timestamp).
148148

149149
```python
150150
# Build the query
151151
products.offers_field( "sem3_id", "4znupRCkN6w2Q4Ke4s6sUC");
152-
products.offers_field( "seller", ["ATRQ56T3H9TM5","LFleurs","Frys","Walmart"] );
152+
products.offers_field( "seller", ["LFleurs","Frys","Walmart"] );
153153
products.offers_field( "currency", "USD");
154154
products.offers_field( "price", "gte", 30);
155155
products.offers_field( "lastrecorded_at", "gte", 1348654600);

0 commit comments

Comments
 (0)