Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[docs] ed -> ing in the network transform docs #61

Merged
merged 2 commits into from May 4, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/guides/network-transform.md
Expand Up @@ -2,12 +2,12 @@
title: Transforming data on network load
---
All network requests flow through the `fetch()` method, so any transforms needed can simply
be done by overrided it with a call to super.
be done by overriding it with a call to super.

## Snakes to camels

Commonly APIs are designed with keys using `snake_case`, but many in typescript/javascript
prefer `camelCase`. This snippet let's us make the transform needed.
prefer `camelCase`. This snippet lets us make the transform needed.

`CamelResource.ts`
```typescript
Expand Down