Skip to content

Commit 6916bea

Browse files
committed
Fixing typo
1 parent 734ca09 commit 6916bea

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

docs/ws/api.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@ The three main sections of a Bullet query are:
1313
"duration": 20000
1414
}
1515
```
16-
The duration represents how long the query runs for (a window from when you submit it to that many milliseconds into the future). See the [Filters](#filters), [Projections](#projections) and [Aggregation](#aggregations) sections for their respective specifications. Each of those sections are objects.
16+
The duration represents how long the query runs for (a window from when you submit it to that many milliseconds into the future).
17+
18+
See the [Filters](#filters), [Projections](#projections) and [Aggregation](#aggregations) sections for their respective specifications. Each of those sections are objects and you will need to be place the entire object in the respective sections above.
1719

1820
## Filters
1921

@@ -93,7 +95,7 @@ for raw records, you can use projections to help reduce the load on the system a
9395

9496
```javascript
9597
{
96-
"projection": {
98+
"fields": {
9799
"fieldA": "newNameA",
98100
"fieldB": "newNameB"
99101
}
@@ -238,7 +240,7 @@ You have three options to generate points.
238240

239241
| Method | Keys |
240242
| -------------------------- | ---------------- |
241-
| Number of Points | You can use the ```numberOfPoints``` key to provide a number of points to generate evenly distributed in the full range of your domain |
243+
| Number of Points | You can use the ```numberOfPoints``` key to provide a number of points to generate evenly distributed in the full range of your domain |
242244
| Generate Points in a range | You can use ```start```, ```end``` and ```increment``` (```start``` < ```end```, ```increment``` > 0) to specify numbers to generate points in a narrower region of your domain |
243245
| Specify free-form points | You can specify a free-form *array* of numbers which will be used as the points |
244246

0 commit comments

Comments
 (0)