From 77d78c01cc213e6ded08a30bb391e9ac54a0cf4e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romain=20Tarti=C3=A8re?= Date: Tue, 30 Jan 2024 10:59:38 -1000 Subject: [PATCH] Add missing quotes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit While here, add syntax highlighting. Signed-off-by: Romain Tartière --- USER_GUIDE.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/USER_GUIDE.md b/USER_GUIDE.md index 1eb22b96a..44036f095 100644 --- a/USER_GUIDE.md +++ b/USER_GUIDE.md @@ -13,8 +13,8 @@ To add the client to your project, install it using [RubyGems](https://rubygems. `gem install opensearch-ruby` or add it to your Gemfile: -``` -gem opensearch-ruby +```ruby +gem 'opensearch-ruby' ``` and run: ``` @@ -23,7 +23,9 @@ bundle install Import the client: -`require 'opensearch'` +```ruby +require 'opensearch' +``` ## Basic Usage ```ruby