Skip to content

Commit 309e624

Browse files
authored
Fixed some typos (#556)
Signed-off-by: Ben Rometsch <[email protected]>
1 parent dfa8b83 commit 309e624

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/reference/concepts/03-evaluation-context.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ At the point of flag evaluation, the evaluation context is merged, and duplicate
166166
### Static Context Implementations (Client-side SDKs)
167167

168168
In [client-side SDKs](/docs/reference/concepts/sdk-paradigms#static-context-paradigms-client-side-sdks), values relevant for flag evaluation are set on the OpenFeature API object.
169-
In these implementations, this is an asynchronous operation assocaited with [provider reconiliation](/docs/reference/concepts/sdk-paradigms#static-context-paradigms-client-side-sdks).
169+
In these implementations, this is an asynchronous operation associated with [provider reconciliation](/docs/reference/concepts/sdk-paradigms#static-context-paradigms-client-side-sdks).
170170

171171
<Tabs groupId="code">
172172
<TabItem value="js" label="TypeScript">

docs/reference/concepts/06-sdk-paradigms.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ For this reason, the evaluation API defines a parameter for the evaluation conte
1818
## Static Context Paradigms (Client-side SDKs)
1919

2020
In client-side usage, the evaluation context changes less frequently, often in response to user actions or UI events.
21-
In this case, the context frequently corresponds to a single user, and the context data represents facts about them (such as their name or subsciption level) or the applciation state (if the user has items in their cart).
22-
When the context data changes, it's often necessary for the provider to update it's cache of evaluated flags, or request an updated ruleset from the server; we refer to this as _context reconiliation_.
21+
In this case, the context frequently corresponds to a single user, and the context data represents facts about them (such as their name or subscription level) or the application state (if the user has items in their cart).
22+
When the context data changes, it's often necessary for the provider to update it's cache of evaluated flags, or request an updated ruleset from the server; we refer to this as _context reconciliation_.
2323
SDKs using the static-context paradigm define a `context changed handler` for providers to implement which runs any time the context is modified.
2424
Client-side implementations include some additional event types: [PROVIDER_RECONCILING](/docs/reference/concepts/events#provider_reconciling-static-contextclient-side-only) and [PROVIDER_CONTEXT_CHANGED](/docs/reference/concepts/events#provider_context_changed-static-contextclient-side-only).
2525
These are emitted when the provider's context is invalidated, and after it's subsequently reconciled, accordingly.

0 commit comments

Comments
 (0)