Skip to content

Commit 60bc84d

Browse files
authored
Add missing quotes (#225)
While here, add syntax highlighting. Signed-off-by: Romain Tartière <[email protected]>
1 parent 221eb68 commit 60bc84d

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

USER_GUIDE.md

+5-3
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ To add the client to your project, install it using [RubyGems](https://rubygems.
1313
`gem install opensearch-ruby`
1414

1515
or add it to your Gemfile:
16-
```
17-
gem opensearch-ruby
16+
```ruby
17+
gem 'opensearch-ruby'
1818
```
1919
and run:
2020
```
@@ -23,7 +23,9 @@ bundle install
2323

2424
Import the client:
2525

26-
`require 'opensearch'`
26+
```ruby
27+
require 'opensearch'
28+
```
2729

2830
## Basic Usage
2931
```ruby

0 commit comments

Comments
 (0)