Skip to content

Commit

Permalink
fix(docs): improve SEO (#5439)
Browse files Browse the repository at this point in the history
  • Loading branch information
Stahlwalker authored Nov 14, 2023
1 parent ada0768 commit 0c7c7e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/docs/src/routes/api/qwik/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -1924,7 +1924,7 @@ At times it is necessary to store values on a store that are non-serializable. N
You can use `noSerialize()` to mark a value as non-serializable. The value is persisted in the Store but does not survive serialization. The implication is that when your application is resumed, the value of this object will be `undefined`. You will be responsible for recovering from this.
See: [noSerialize Tutorial](http://qwik.builder.io/tutorial/store/no-serialize)
See: [noSerialize Tutorial](https://qwik.builder.io/tutorial/store/no-serialize)
```typescript
noSerialize: <T extends object | undefined>(input: T) => NoSerialize<T>;
Expand Down

0 comments on commit 0c7c7e6

Please sign in to comment.