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 fixes #1395

Merged
merged 2 commits into from
Dec 23, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions docs/ember/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,9 @@ We do _not_ cover general usage of Ember; instead, we assume that as background

## Outline

* [Controllers](./controllers.md)
* [Services](./services.md)
* [Overview: Ember](./overview.md)
* [Testing](./testing.md)
* [Components](./components.md)
* [Helpers](./helpers.md)
* [Services](./services.md)
* [Routes](./routes.md)
* [Controllers](./controllers.md)
* [Helpers](./helpers.md)
* [Testing](./testing.md)
2 changes: 1 addition & 1 deletion docs/legacy/ember-object.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ The [Ember Atlas](https://emberatlas.com) includes guides for migrating [from cl

### Failure modes

You often need to define `this` in actions hashes, computd properties, etc. That in turn often leads to problems with self-referential `this`: TypeScript simply cannot figure out how to stop recursing through the definitions of the type.
You often need to define `this` in actions hashes, computed properties, etc. That in turn often leads to problems with self-referential `this`: TypeScript simply cannot figure out how to stop recursing through the definitions of the type.

Additionally, even when you get past the endlessly-recursive type definition problems, when enough mixins are resolved TypeScript will occasionally just give up because it cannot resolve the property or method you're interested in across the many shared base classes.

Expand Down