docs(platform-browser): fix spelling of deserialized (#36102)

PR Close #36102
This commit is contained in:
Daniel Eisterhold 2020-03-17 08:42:58 -05:00 committed by Misko Hevery
parent bc6e6691e9
commit 5848439a48
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ export function makeStateKey<T = void>(key: string): StateKey<T> {
* `ServerTransferStateModule` on the server and `BrowserTransferStateModule` on the client.
*
* The values in the store are serialized/deserialized using JSON.stringify/JSON.parse. So only
* boolean, number, string, null and non-class objects will be serialized and deserialzied in a
* boolean, number, string, null and non-class objects will be serialized and deserialized in a
* non-lossy manner.
*
* @publicApi