Skip to content

Commit

Permalink
Updates small error in documentation
Browse files Browse the repository at this point in the history
Need to use double quotes in this case for string interpolation.
  • Loading branch information
jonfriese committed Apr 18, 2016
1 parent ff1af34 commit 6824050
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -1101,7 +1101,7 @@ queried table.
```ruby
shirt_brands = ShirtBrand.search_by_name("Penguin")
.joins(:shirt_sizes)
.group('shirt_brands.id, #{PgSearch::Configuration.alias('shirt_brands')}.rank')
.group("shirt_brands.id, #{PgSearch::Configuration.alias('shirt_brands')}.rank")
```

## ATTRIBUTIONS
Expand Down

0 comments on commit 6824050

Please sign in to comment.