Skip to content
This repository has been archived by the owner on Sep 28, 2022. It is now read-only.

Commit

Permalink
Merge pull request #42 from theatlantic/fix-readme
Browse files Browse the repository at this point in the history
Fixed a few issues in the README
  • Loading branch information
travisturner authored Aug 6, 2017
2 parents 96c2d45 + b2a3b0b commit 21aefaa
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ Frame:
* `InverseFilterFieldTopN(n uint64, bitmap *PQLBitmapQuery, field string, values ...interface{}) *PQLBitmapQuery`
* `Range(rowID uint64, start time.Time, end time.Time) *PQLBitmapQuery`
* `InverseRange(columnID uint64, start time.Time, end time.Time) *PQLBitmapQuery`
* `SetBitmapAttrs(rowID uint64, attrs map[string]interface{}) *PQLBaseQuery`
* `SetRowAttrs(rowID uint64, attrs map[string]interface{}) *PQLBaseQuery`

### Pilosa URI

Expand Down Expand Up @@ -348,13 +348,13 @@ for column = range response.Columns() {
* `Count` field to retrieve the number of rows per the given row ID returned from `Count` queries.

```go
bitmap := response.Bitmap
bitmap := result.Bitmap
bits := bitmap.Bits
attributes := bitmap.Attributes

countItems := response.CountItems
countItems := result.CountItems

count := response.Count
count := result.Count
```

## Importing and Exporting Data
Expand Down

0 comments on commit 21aefaa

Please sign in to comment.