From bb33efe09529e231ecccdbaaf96cb0fd69f86301 Mon Sep 17 00:00:00 2001 From: Leonardo Dino Date: Wed, 6 Nov 2019 12:17:34 -0800 Subject: [PATCH] Fix typo in RelayHooks-ApiReference.md (#2931) Summary: see also: https://github.com/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee Pull Request resolved: https://github.com/facebook/relay/pull/2931 Differential Revision: D18354350 Pulled By: kassens fbshipit-source-id: ba0c6fb0da9a7c90e29cf930294ec5bcae35a065 --- .../version-experimental/RelayHooks-ApiReference.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/versioned_docs/version-experimental/RelayHooks-ApiReference.md b/website/versioned_docs/version-experimental/RelayHooks-ApiReference.md index db46b2f2ffbf2..b796a05620459 100644 --- a/website/versioned_docs/version-experimental/RelayHooks-ApiReference.md +++ b/website/versioned_docs/version-experimental/RelayHooks-ApiReference.md @@ -626,5 +626,5 @@ fetchQuery( #### Behavior -* `fetchQuery` will automatically save th fetched data to the in-memory Relay store, and notify any components subscribed to the relevant data. +* `fetchQuery` will automatically save the fetched data to the in-memory Relay store, and notify any components subscribed to the relevant data. * `fetchQuery` will ***NOT*** retain the data for the query, meaning that it is not guaranteed that the data will remain saved in the Relay store at any point after the request completes. If you wish to make sure that the data is retained outside of the scope of the request, you need to call `environment.retain()` directly on the query to ensure it doesn't get deleted. See our section on [Controlling Relay's GC Policy](a-guided-tour-of-relay/#controlling-relays-garbage-collection-policy) for more details.