Skip to content

Commit

Permalink
quick typo corrections (#1869)
Browse files Browse the repository at this point in the history
  • Loading branch information
nikolasleblanc authored Jun 7, 2023
1 parent f639ae3 commit d63ecf8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions devcycle/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const dvcClient = initialize("<DVC_CLIENT_SDK_KEY>", user, dvcOptions);
// for all variable evaluations
dvcClient.subscribe(
"variableEvaluted:*",
"variableEvaluated:*",
(key, variable) => {
datadogRum.addFeatureFlagEvaluation(key, variable.value);
}
Expand All @@ -37,7 +37,7 @@ dvcClient.subscribe(
// for a particular variable's evaluations
dvcClient.subscribe(
"variableEvaluted:my-variable-key",
"variableEvaluated:my-variable-key",
(key, variable) => {
datadogRum.addFeatureFlagEvaluation(key, variable.value);
}
Expand Down

0 comments on commit d63ecf8

Please sign in to comment.