@@ -8,10 +8,10 @@ import translateContext from './translateContext';
88import translateResult from './translateResult' ;
99
1010/**
11- * Create a { @link ResolutionDetails} for an evaluation that produced a type different
11+ * Create a ResolutionDetails for an evaluation that produced a type different
1212 * than the expected type.
13- * @param value The default value to populate the { @link ResolutionDetails} with.
14- * @returns An { @link ResolutionDetails} with the default value.
13+ * @param value The default value to populate the ResolutionDetails with.
14+ * @returns A ResolutionDetails with the default value.
1515 */
1616function wrongTypeResult < T > ( value : T ) : ResolutionDetails < T > {
1717 return {
@@ -30,7 +30,7 @@ export default class LaunchDarklyProvider implements Provider {
3030 } ;
3131
3232 /**
33- * Construct an {@link LaunchDarklyProvider}.
33+ * Construct a {@link LaunchDarklyProvider}.
3434 * @param client The LaunchDarkly client instance to use.
3535 */
3636 constructor ( private readonly client : LDClient ) {
@@ -47,7 +47,7 @@ export default class LaunchDarklyProvider implements Provider {
4747 * from LaunchDarkly.
4848 * @param context The context requesting the flag. The client will generate an analytics event to
4949 * register this context with LaunchDarkly if the context does not already exist.
50- * @returns A promise which will resolve to an { @link EvaluationDetails} .
50+ * @returns A promise which will resolve to a ResolutionDetails .
5151 */
5252 async resolveBooleanEvaluation (
5353 flagKey : string ,
@@ -72,7 +72,7 @@ export default class LaunchDarklyProvider implements Provider {
7272 * from LaunchDarkly.
7373 * @param context The context requesting the flag. The client will generate an analytics event to
7474 * register this context with LaunchDarkly if the context does not already exist.
75- * @returns A promise which will resolve to an { @link EvaluationDetails} .
75+ * @returns A promise which will resolve to a ResolutionDetails .
7676 */
7777 async resolveStringEvaluation (
7878 flagKey : string ,
@@ -97,7 +97,7 @@ export default class LaunchDarklyProvider implements Provider {
9797 * from LaunchDarkly.
9898 * @param context The context requesting the flag. The client will generate an analytics event to
9999 * register this context with LaunchDarkly if the context does not already exist.
100- * @returns A promise which will resolve to an { @link EvaluationDetails} .
100+ * @returns A promise which will resolve to a ResolutionDetails .
101101 */
102102 async resolveNumberEvaluation (
103103 flagKey : string ,
@@ -120,7 +120,7 @@ export default class LaunchDarklyProvider implements Provider {
120120 * from LaunchDarkly.
121121 * @param context The context requesting the flag. The client will generate an analytics event to
122122 * register this context with LaunchDarkly if the context does not already exist.
123- * @returns A promise which will resolve to an { @link EvaluationDetails} .
123+ * @returns A promise which will resolve to a ResolutionDetails .
124124 */
125125 async resolveObjectEvaluation < U extends JsonValue > (
126126 flagKey : string ,
0 commit comments