Skip to content

Commit a09b245

Browse files
committed
fixes broken links + fixes 'Language does not exist' errors
1 parent 198bedc commit a09b245

File tree

10 files changed

+15
-15
lines changed

10 files changed

+15
-15
lines changed

docs/advanced/targeting.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ By adding multiple targeting rules you can create more complex rule sets.
6262
All other cases: OFF
6363

6464
### All other cases
65-
This value will be served as a fallback if none of the above rules apply or a [`User Object`](user-object) was not passed to the [ConfigCat SDK](sdk-reference/overview.md) correctly within your application.
65+
This value will be served as a fallback if none of the above rules apply or a [`User Object`](advanced/user-object.md) was not passed to the [ConfigCat SDK](sdk-reference/overview.md) correctly within your application.
6666

6767
## Targeting a percentage of users
6868
With percentage-based user targeting you can specify a randomly selected fraction of your users whom a feature will be enabled or a different value will be served.
@@ -96,4 +96,4 @@ When the Setting Kind is *Text*, *Whole Number* or *Decimal Number* the maximum
9696
> The sum of all *% values* must be equal to 100.
9797
9898
### All other cases
99-
This value will be served as a fallback if none of the above rules apply or a [`User Object`](user-object) was not passed to the [ConfigCat SDK](sdk-reference/overview.md) correctly within your application.
99+
This value will be served as a fallback if none of the above rules apply or a [`User Object`](advanced/user-object.md) was not passed to the [ConfigCat SDK](sdk-reference/overview.md) correctly within your application.

docs/sdk-reference/android.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ ConfigCatClient.newBuilder()
8989
| --------------- | --------------------------------------------------------------------------------------------------------------- |
9090
| `classOfT` | **REQUIRED.** The type of the setting. |
9191
| `key` | **REQUIRED.** Setting-specific key. Set in *ConfigCat Management Console* for each setting. |
92-
| `user` | Optional, *User Object*. Essential when using Targeting. [Read more about Targeting.](../../advanced/targeting)
92+
| `user` | Optional, *User Object*. Essential when using Targeting. [Read more about Targeting.](advanced/targeting.md)
9393
| `defaultValue` | **REQUIRED.** This value will be returned in case of an error. |
9494
```kotlin
9595
val value = client.getValue(

docs/sdk-reference/csharp.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: .NET (C#)
44
---
55
## Getting started:
66
### 1. Install *ConfigCat SDK* <a href="https://www.nuget.org/packages/ConfigCat.Client" target="_blank">Nuget</a> package
7-
```PowerShell
7+
```powershell
88
Install-Package ConfigCat.Client
99
```
1010

@@ -63,7 +63,7 @@ Creating the client is different for each polling mode.
6363
| -------------- | --------------------------------------------------------------------------------------------------------------- |
6464
| `key` | **REQUIRED.** Setting-specific key. Set in *ConfigCat Management Console* for each setting. |
6565
| `defaultValue` | **REQUIRED.** This value will be returned in case of an error. |
66-
| `user` | Optional, *User Object*. Essential when using Targeting. [Read more about Targeting.](../../advanced/targeting) |
66+
| `user` | Optional, *User Object*. Essential when using Targeting. [Read more about Targeting.](advanced/targeting.md) |
6767
```csharp
6868
User userObject = new User("435170f4-8a8b-4b67-a723-505ac7cdea92");
6969
client.GetValue("keyOfMySetting", false, userObject);

docs/sdk-reference/go.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ value := client.GetValue(
9696
| --------------- | --------------------------------------------------------------------------------------------------------------- |
9797
| `key` | Setting-specific key. Set in *ConfigCat Management Console* for each setting. |
9898
| `defaultValue` | This value will be returned in case of an error. |
99-
| `user` | *User Object*. Essential when using Targeting. [Read more about Targeting.](../../advanced/targeting) |
99+
| `user` | *User Object*. Essential when using Targeting. [Read more about Targeting.](advanced/targeting.md) |
100100
```go
101101
value := client.GetValueForUser(
102102
"keyOfMySetting", // Setting Key

docs/sdk-reference/ios.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ client.getValueAsync(for: "key-of-my-awesome-feature", defaultValue: false, comp
7070
| --------------- | --------------------------------------------------------------------------------------------------------------- |
7171
| `key` | **REQUIRED.** Setting-specific key. Set in *ConfigCat Management Console* for each setting. |
7272
| `defaultValue` | **REQUIRED.** This value will be returned in case of an error. |
73-
| `user` | Optional, *User Object*. Essential when using Targeting. [Read more about Targeting.](../../advanced/targeting) |
73+
| `user` | Optional, *User Object*. Essential when using Targeting. [Read more about Targeting.](advanced/targeting.md) |
7474
```swift
7575
let value = client.getValue(
7676
for: "keyOfMySetting", // Setting Key

docs/sdk-reference/java.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Maven:
1414
</dependency>
1515
```
1616
Gradle:
17-
```
17+
```bash
1818
implementation 'com.configcat:configcat-java-client:1.+'
1919
```
2020
### 2. Import the ConfigCat SDK:
@@ -83,7 +83,7 @@ ConfigCatClient.newBuilder()
8383
| --------------- | --------------------------------------------------------------------------------------------------------------- |
8484
| `classOfT` | **REQUIRED.** The type of the setting. |
8585
| `key` | **REQUIRED.** Setting-specific key. Set in *ConfigCat Management Console* for each setting. |
86-
| `user` | Optional, *User Object*. Essential when using Targeting. [Read more about Targeting.](../../advanced/targeting)
86+
| `user` | Optional, *User Object*. Essential when using Targeting. [Read more about Targeting.](advanced/targeting.md)
8787
| `defaultValue` | **REQUIRED.** This value will be returned in case of an error. |
8888
```java
8989
Boolean value = client.getValue(
@@ -261,7 +261,7 @@ Any time you want to refresh the cached configuration with the latest one, you c
261261
## Sample Apps
262262
Check out our Sample Applications how they use the ConfigCat SDK
263263
* <a href="https://github.com/ConfigCat/java-sdk/tree/master/samples/console" target="_blank">Simple Console Application</a>
264-
* <a href="https://github.com/ConfigCat/java-sdk/tree/master/samples/web" target="_blank">Web Application</a> with Dependency Injection that uses [ConfigCat Webhooks](../../advanced/notifications-webhooks) to get notified about configuration updates
264+
* <a href="https://github.com/ConfigCat/java-sdk/tree/master/samples/web" target="_blank">Web Application</a> with Dependency Injection that uses [ConfigCat Webhooks](advanced/notifications-webhooks.md) to get notified about configuration updates
265265

266266
Look under the hood
267267
* <a href="https://github.com/ConfigCat/java-sdk" target="_blank">ConfigCat Java SDK's repository on Github</a>

docs/sdk-reference/js.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ Creating the client is different for each polling mode.
6262
| `key` | **REQUIRED.** Setting-specific key. Set in *ConfigCat Management Console* for each setting. |
6363
| `defaultValue` | **REQUIRED.** This value will be returned in case of an error. |
6464
| `callback` | **REQUIRED.** Called with the actual setting value. |
65-
| `user` | Optional, *User Object*. Essential when using Targeting. [Read more about Targeting.](../../advanced/targeting) |
65+
| `user` | Optional, *User Object*. Essential when using Targeting. [Read more about Targeting.](advanced/targeting.md) |
6666
```js
6767
configCatClient.getValue(
6868
"keyOfMySetting", // Setting Key

docs/sdk-reference/node.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Creating the client is different for each polling mode.
5353
| `key` | **REQUIRED.** Setting-specific key. Set in *ConfigCat Management Console* for each setting. |
5454
| `defaultValue` | **REQUIRED.** This value will be returned in case of an error. |
5555
| `callback` | **REQUIRED.** Called with the actual setting value. |
56-
| `user` | Optional, *User Object*. Essential when using Targeting. [Read more about Targeting.](../../advanced/targeting) |
56+
| `user` | Optional, *User Object*. Essential when using Targeting. [Read more about Targeting.](advanced/targeting.md) |
5757
```js
5858
configCatClient.getValue(
5959
"keyOfMySetting", // Setting Key

docs/sdk-reference/php.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: PHP
44
---
55
## Getting started
66
### 1. Install the package with [Composer](https://getcomposer.org/)
7-
```shell
7+
```bash
88
composer require configcat/configcat-client
99
```
1010

@@ -57,7 +57,7 @@ $client = new \ConfigCat\ConfigCatClient("#YOUR-API-KEY#", [
5757
| -------------- | ------------------------------------------------------------------------------------------------------------ |
5858
| `key` | **REQUIRED.** Setting-specific key. Set in *ConfigCat Management Console* for each setting. |
5959
| `defaultValue` | **REQUIRED.** This value will be returned in case of an error. |
60-
| `user` | Optional, *User Object*. Essential when using Targeting. [Read more about Targeting.](../../advanced/targeting) |
60+
| `user` | Optional, *User Object*. Essential when using Targeting. [Read more about Targeting.](advanced/targeting.md) |
6161
```php
6262
$value = $client->getValue(
6363
"keyOfMySetting", # Setting Key

docs/sdk-reference/python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Creating the client is different for each polling mode.
5555
| --------------- | --------------------------------------------------------------------------------------------------------------- |
5656
| `key` | **REQUIRED.** Setting-specific key. Set in *ConfigCat Management Console* for each setting. |
5757
| `default_value` | **REQUIRED.** This value will be returned in case of an error. |
58-
| `user` | Optional, *User Object*. Essential when using Targeting. [Read more about Targeting.](../../advanced/targeting) |
58+
| `user` | Optional, *User Object*. Essential when using Targeting. [Read more about Targeting.](advanced/targeting.md) |
5959
```python
6060
value = configcat_client.get_value(
6161
'keyOfMySetting', # Setting Key

0 commit comments

Comments
 (0)