From 4584d04e845fe695b793542f88d4c3ce1395cd25 Mon Sep 17 00:00:00 2001 From: Jun Ohtani Date: Mon, 19 May 2025 16:51:51 +0900 Subject: [PATCH] Update README.md Fix typo --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 4dabc257a3..01827d454d 100644 --- a/README.md +++ b/README.md @@ -39,12 +39,12 @@ It's possible to use multiple versions of the client in a single project: // main.go import ( - elasticsearch7 "github.com/elastic/go-elasticsearch/v8" - elasticsearch8 "github.com/elastic/go-elasticsearch/v9" + elasticsearch8 "github.com/elastic/go-elasticsearch/v8" + elasticsearch9 "github.com/elastic/go-elasticsearch/v9" ) // ... - es8, _ := elasticsearch7.NewDefaultClient() - es9, _ := elasticsearch8.NewDefaultClient() + es8, _ := elasticsearch8.NewDefaultClient() + es9, _ := elasticsearch9.NewDefaultClient() The `main` branch of the client is compatible with the current `master` branch of Elasticsearch.