1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-09-15 17:50:48 +02:00

Update docs/sdks/java.md

This commit is contained in:
Christopher Kolstad 2021-02-24 10:52:47 +01:00 committed by GitHub
parent 77a95b9788
commit f839a68a65
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,7 +7,7 @@ In this guide we explain how to use feature toggles in a Java application using
> **Important details** > **Important details**
> >
>Make sure your have the following details available: >Make sure you have the following details available:
> >
>- **API URL** Where you should connect your client SDK >- **API URL** Where you should connect your client SDK
>- **API Secret** Your API secret required to connect to your instance. >- **API Secret** Your API secret required to connect to your instance.
@ -102,4 +102,4 @@ Unleash unleash = new DefaultUnleash(config);
// Anywhere in the code unleash will get the unleash context from your registered provider. // Anywhere in the code unleash will get the unleash context from your registered provider.
unleash.isEnabled("someToggle"); unleash.isEnabled("someToggle");
``` ```