Skip to content

Commit

Permalink
Use interpolated strings in these examples
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelklishin committed Sep 11, 2020
1 parent c275cdb commit fff31eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ChangeLog.md
Expand Up @@ -14,14 +14,14 @@ name that will be displayed in the RabbitMQ management UI and mentioned in
Instead of

``` ruby
conn = Bunny.new(client_properties: {connection_name: 'app ABC #{rand}'})
conn = Bunny.new(client_properties: {connection_name: "app ABC #{rand}"})
conn.start
```

a new top-level connection option now can be used:

``` ruby
conn = Bunny.new(connection_name: 'app ABC #{rand}')
conn = Bunny.new(connection_name: "app ABC #{rand}")
conn.start
```

Expand Down

0 comments on commit fff31eb

Please sign in to comment.