Skip to content

Commit 9dedfc9

Browse files
authored
fix(clients): mention main branch instead of master (#3566)
1 parent aaddf90 commit 9dedfc9

File tree

13 files changed

+29
-44
lines changed

13 files changed

+29
-44
lines changed

clients/algoliasearch-client-csharp/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ var response = await client.SearchAsync<Object>(
9090
);
9191
```
9292

93-
For full documentation, visit the **[Algolia CSharp API Client](https://www.algolia.com/doc/api-client/getting-started/install/csharp/)**.
93+
For full documentation, visit the **[Algolia CSharp API Client](https://www.algolia.com/doc/libraries/csharp/)**.
9494

9595
## ❓ Troubleshooting
9696

clients/algoliasearch-client-go/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@
99
<a href="https://github.com/algolia/algoliasearch-client-go/tags"><img src="https://img.shields.io/github/tag/algolia/algoliasearch-client-go.svg?include_prereleases&sort=semver" alt="Github Releases"></img></a>
1010
<a href="https://pkg.go.dev/github.com/algolia/algoliasearch-client-go/v4"><img src="https://pkg.go.dev/badge/github.com/algolia/algoliasearch-client-go/v4" alt="GoDoc"></img></a>
1111
<a href="https://goreportcard.com/report/github.com/algolia/algoliasearch-client-go"><img src="https://goreportcard.com/badge/github.com/algolia/algoliasearch-client-go" alt="Go Report Card"></img></a>
12-
<a href="/algolia/algoliasearch-client-go/blob/master/LICENSE"><img src="https://img.shields.io/badge/license-MIT-blue.svg" alt="License"></img></a>
12+
<a href="/algolia/algoliasearch-client-go/blob/main/LICENSE"><img src="https://img.shields.io/badge/license-MIT-blue.svg" alt="License"></img></a>
1313
<img src="https://img.shields.io/badge/Go-%3E=1.21-green.svg" alt="Supported version"></img></a>
1414
</p>
1515
</p>
1616

1717
<p align="center">
18-
<a href="https://www.algolia.com/doc/api-client/getting-started/install/go/" target="_blank">Documentation</a> •
18+
<a href="https://www.algolia.com/doc/libraries/go/" target="_blank">Documentation</a> •
1919
<a href="https://discourse.algolia.com" target="_blank">Community Forum</a> •
2020
<a href="http://stackoverflow.com/questions/tagged/algolia" target="_blank">Stack Overflow</a> •
2121
<a href="https://github.com/algolia/algoliasearch-client-go/issues" target="_blank">Report a bug</a> •
@@ -80,7 +80,7 @@ if err != nil {
8080
print(response)
8181
```
8282

83-
For full documentation, visit the **[Algolia Go API Client](https://www.algolia.com/doc/api-client/getting-started/install/go/)**.
83+
For full documentation, visit the **[Algolia Go API Client](https://www.algolia.com/doc/libraries/go/)**.
8484

8585
## ❓ Troubleshooting
8686

clients/algoliasearch-client-java/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</p>
1313

1414
<p align="center">
15-
<a href="https://www.algolia.com/doc/api-client/getting-started/install/java/" target="_blank">Documentation</a> •
15+
<a href="https://www.algolia.com/doc/libraries/java/" target="_blank">Documentation</a> •
1616
<a href="https://discourse.algolia.com" target="_blank">Community Forum</a> •
1717
<a href="http://stackoverflow.com/questions/tagged/algolia" target="_blank">Stack Overflow</a> •
1818
<a href="https://github.com/algolia/algoliasearch-client-java/issues" target="_blank">Report a bug</a> •
@@ -69,7 +69,7 @@ client.search(
6969
);
7070
```
7171

72-
For full documentation, visit the **[Algolia Java API Client](https://www.algolia.com/doc/api-client/getting-started/install/java/)**.
72+
For full documentation, visit the **[Algolia Java API Client](https://www.algolia.com/doc/libraries/java/)**.
7373

7474
## ❓ Troubleshooting
7575

clients/algoliasearch-client-javascript/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
</p>
1515

1616
<p align="center">
17-
<a href="https://www.algolia.com/doc/api-client/getting-started/install/javascript/" target="_blank">Documentation</a> •
17+
<a href="https://www.algolia.com/doc/libraries/javascript/" target="_blank">Documentation</a> •
1818
<a href="https://www.algolia.com/doc/guides/building-search-ui/what-is-instantsearch/js/" target="_blank">InstantSearch</a> •
1919
<a href="https://discourse.algolia.com" target="_blank">Community Forum</a> •
2020
<a href="http://stackoverflow.com/questions/tagged/algolia" target="_blank">Stack Overflow</a> •
@@ -63,12 +63,12 @@ import { liteClient } from 'algoliasearch/lite';
6363
const client = liteClient('YOUR_APP_ID', 'YOUR_API_KEY');
6464
```
6565

66-
For full documentation, visit the **[Algolia JavaScript API Client](https://www.algolia.com/doc/api-client/getting-started/install/javascript/)**.
66+
For full documentation, visit the **[Algolia JavaScript API Client](https://www.algolia.com/doc/libraries/javascript/)**.
6767

6868
## ❓ Troubleshooting
6969

7070
Encountering an issue? Before reaching out to support, we recommend heading to our [FAQ](https://www.algolia.com/doc/api-client/troubleshooting/faq/javascript/) where you will find answers for the most common issues and gotchas with the client. You can also open [a GitHub issue](https://github.com/algolia/api-clients-automation/issues/new?assignees=&labels=&projects=&template=Bug_report.md)
7171

7272
## 📄 License
7373

74-
The Algolia JavaScript API Client is an open-sourced software licensed under the [MIT license](LICENSE).
74+
The Algolia JavaScript API Client is an open-sourced software licensed under the [MIT license](LICENSE).

clients/algoliasearch-client-kotlin/README.md

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</p>
1313

1414
<p align="center">
15-
<a href="https://www.algolia.com/doc/api-client/getting-started/install/kotlin/" target="_blank">Documentation</a> •
15+
<a href="https://www.algolia.com/doc/libraries/kotlin/" target="_blank">Documentation</a> •
1616
<a href="https://discourse.algolia.com" target="_blank">Community Forum</a> •
1717
<a href="http://stackoverflow.com/questions/tagged/algolia" target="_blank">Stack Overflow</a> •
1818
<a href="https://github.com/algolia/algoliasearch-client-kotlin/issues" target="_blank">Report a bug</a> •
@@ -47,15 +47,8 @@ Install the Kotlin client by adding the following dependency to your `gradle.bui
4747
```
4848
Also, choose and add to your dependencies one of [Ktor http client engines](https://ktor.io/docs/http-client-engines.html).
4949
Alternatively, you can use [algoliasearch-client-kotlin-bom](/client-bom).
50-
For full documentation, visit the **[Algolia Kotlin API Client](https://www.algolia.com/doc/api-client/getting-started/install/kotlin/)**.
5150

52-
### Guides
53-
54-
- [Getting started](https://github.com/algolia/algoliasearch-client-kotlin/tree/master/docs/GettingStarted.md)
55-
- [DSL](https://github.com/algolia/algoliasearch-client-kotlin/tree/master/docs/DSL.md)
56-
- [Serialization](https://github.com/algolia/algoliasearch-client-kotlin/tree/master/docs/Serialization.md)
57-
- [ExceptionHandling](https://github.com/algolia/algoliasearch-client-kotlin/tree/master/docs/ExceptionHandling.md)
58-
- [Configure the HTTP client](https://github.com/algolia/algoliasearch-client-kotlin/tree/master/docs/HTTPClient.md)
51+
For full documentation, visit the **[Algolia Kotlin API Client](https://www.algolia.com/doc/libraries/kotlin/)**.
5952

6053
## ❓ Troubleshooting
6154

clients/algoliasearch-client-php/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
</p>
1515

1616
<p align="center">
17-
<a href="https://www.algolia.com/doc/api-client/getting-started/install/php/" target="_blank">Documentation</a> •
17+
<a href="https://www.algolia.com/doc/libraries/php/" target="_blank">Documentation</a> •
1818
<a href="https://github.com/algolia/scout-extended" target="_blank">Laravel</a> •
1919
<a href="https://github.com/algolia/search-bundle" target="_blank">Symfony</a> •
2020
<a href="https://discourse.algolia.com" target="_blank">Community Forum</a> •
@@ -73,7 +73,7 @@ $response = $client->search(
7373
var_dump($response);
7474
```
7575

76-
For full documentation, visit the **[Algolia PHP API Client](https://www.algolia.com/doc/api-client/getting-started/install/php/)**.
76+
For full documentation, visit the **[Algolia PHP API Client](https://www.algolia.com/doc/libraries/php/)**.
7777

7878
## ❓ Troubleshooting
7979

clients/algoliasearch-client-python/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
</p>
1414

1515
<p align="center">
16-
<a href="https://www.algolia.com/doc/api-client/getting-started/install/python/" target="_blank">Documentation</a> •
16+
<a href="https://www.algolia.com/doc/libraries/python/" target="_blank">Documentation</a> •
1717
<a href="https://github.com/algolia/algoliasearch-django" target="_blank">Django</a> •
1818
<a href="https://discourse.algolia.com" target="_blank">Community Forum</a> •
1919
<a href="http://stackoverflow.com/questions/tagged/algolia" target="_blank">Stack Overflow</a> •
@@ -80,7 +80,7 @@ print(response)
8080
print(response.to_json())
8181
```
8282

83-
For full documentation, visit the **[Algolia Python API Client](https://www.algolia.com/doc/api-client/getting-started/install/python/)**.
83+
For full documentation, visit the **[Algolia Python API Client](https://www.algolia.com/doc/libraries/python/)**.
8484

8585
## ❓ Troubleshooting
8686

clients/algoliasearch-client-ruby/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
</p>
1414

1515
<p align="center">
16-
<a href="https://www.algolia.com/doc/api-client/getting-started/install/ruby/" target="_blank">Documentation</a> •
16+
<a href="https://www.algolia.com/doc/libraries/ruby/" target="_blank">Documentation</a> •
1717
<a href="https://github.com/algolia/algoliasearch-rails" target="_blank">Rails</a> •
1818
<a href="https://discourse.algolia.com" target="_blank">Community Forum</a> •
1919
<a href="http://stackoverflow.com/questions/tagged/algolia" target="_blank">Stack Overflow</a> •
@@ -47,7 +47,7 @@ Finally, you may begin searching a object using the `search` method:
4747
objects = client.search_single_index('your_index_name', 'Foo')
4848
```
4949

50-
For full documentation, visit the **[Algolia Ruby API Client](https://www.algolia.com/doc/api-client/getting-started/install/ruby/)**.
50+
For full documentation, visit the **[Algolia Ruby API Client](https://www.algolia.com/doc/libraries/ruby/)**.
5151

5252
## ❓ Troubleshooting
5353

clients/algoliasearch-client-scala/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</p>
1313

1414
<p align="center">
15-
<a href="https://www.algolia.com/doc/api-client/getting-started/install/scala/" target="_blank">Documentation</a> •
15+
<a href="https://www.algolia.com/doc/libraries/scala/" target="_blank">Documentation</a> •
1616
<a href="https://discourse.algolia.com" target="_blank">Community Forum</a> •
1717
<a href="https://stackoverflow.com/questions/tagged/algolia" target="_blank">Stack Overflow</a> •
1818
<a href="https://github.com/algolia/algoliasearch-client-scala/issues" target="_blank">Report a bug</a> •
@@ -116,7 +116,7 @@ val response = client.search(
116116
val value = Await.result(response, Duration(100, "sec"))
117117
```
118118

119-
For full documentation, visit the **[Algolia Scala API Client](https://www.algolia.com/doc/api-client/getting-started/install/scala/)**.
119+
For full documentation, visit the **[Algolia Scala API Client](https://www.algolia.com/doc/libraries/scala/)**.
120120

121121
## ❓ Troubleshooting
122122

clients/algoliasearch-client-swift/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030

3131
<p align="center">
32-
<a href="https://www.algolia.com/doc/api-client/getting-started/install/swift/" target="_blank">Documentation</a> •
32+
<a href="https://www.algolia.com/doc/libraries/swift/" target="_blank">Documentation</a> •
3333
<a href="https://discourse.algolia.com" target="_blank">Community Forum</a> •
3434
<a href="http://stackoverflow.com/questions/tagged/algolia" target="_blank">Stack Overflow</a> •
3535
<a href="https://github.com/algolia/algoliasearch-client-swift/issues" target="_blank">Report a bug</a> •
@@ -133,7 +133,7 @@ let response: SearchResponses<Hit> = try await client
133133
))]))
134134
```
135135

136-
For full documentation, visit the **[Algolia Swift API Client](https://www.algolia.com/doc/api-client/getting-started/install/swift/)**.
136+
For full documentation, visit the **[Algolia Swift API Client](https://www.algolia.com/doc/libraries/swift/)**.
137137

138138
## Notes
139139

0 commit comments

Comments
 (0)