diff --git a/docs/sdk/client-side-sdks/roku/roku-gettingstarted.md b/docs/sdk/client-side-sdks/roku/roku-gettingstarted.md index 60053f8c..a438ffec 100644 --- a/docs/sdk/client-side-sdks/roku/roku-gettingstarted.md +++ b/docs/sdk/client-side-sdks/roku/roku-gettingstarted.md @@ -88,7 +88,7 @@ The DevCycleUser can be built using the following methods [DevCycleUser](https:/ The SDK exposes various initialization options which can be used by passing a `DevCycleOptions` object to the `options` parameter of `InitializeDevCycleClient` method: -[DevCycle Options](https://github.com/DevCycleHQ-Labs/roku-client-sdk/blob/main/components/DevCycle/DevCycleOptions.brs) +[DevCycle Options](https://github.com/DevCycleHQ/roku-client-sdk/blob/main/components/DevCycle/DevCycleOptions.brs) | Method | Parameter | Default | Description | | ---------------------------- | --------- | ------- | -------------------------------------------------------------------------------------------------------------- | diff --git a/docs/sdk/client-side-sdks/roku/roku-usage.md b/docs/sdk/client-side-sdks/roku/roku-usage.md index 40118498..1d8f3f67 100644 --- a/docs/sdk/client-side-sdks/roku/roku-usage.md +++ b/docs/sdk/client-side-sdks/roku/roku-usage.md @@ -35,7 +35,7 @@ To get all the Features returned in the config: features = m.devcycleClient.getAllFeatures() ``` -If the SDK has not finished initializing, these methods will return an empty object. +If the SDK has not finished initializing, these methods log an error and return `invalid`. Wait until the `DevCycleTask` node has initialized before calling them. ### Get All Variables @@ -45,7 +45,7 @@ To get all the variables returned in the config: variables = m.devcycleClient.getAllVariables() ``` -If the SDK has not finished initializing, these methods will return an empty object. +If the SDK has not finished initializing, these methods log an error and return `invalid`. Wait until the `DevCycleTask` node has initialized before calling them. :::caution