commit 79f2b064c05ee6dd17bacccc04966a49503f601a
parent a0b8b82d16cfc976168912856eba4f8ef4243170
Author: MTRNord <mtrnord1@gmail.com>
Date: Tue, 13 Mar 2018 15:51:11 +0100
Fix typo
Diffstat:
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/app/papers-list/papers-list.component.ts b/src/app/papers-list/papers-list.component.ts
@@ -40,7 +40,7 @@ export class PapersListComponent {
})
.take(5)
// TODO: Allow to link to a Status Page
- .concat(Observable.throw({error: 'Sorry, there was an error (after 5 retries). This probably means we can\'t reach out API Server :('}));
+ .concat(Observable.throw({error: 'Sorry, there was an error (after 5 retries). This probably means we can\'t reach our API Server :('}));
})
.subscribe(
data => { this.data = this.chunk(data, 3); },
diff --git a/src/app/tweet-list/tweet-list.component.ts b/src/app/tweet-list/tweet-list.component.ts
@@ -48,7 +48,7 @@ export class TweetListComponent implements OnInit {
})
.take(5)
// TODO: Allow to link to a Status Page
- .concat(Observable.throw({error: 'Sorry, there was an error (after 5 retries). This probably means we can\'t reach out API Server :('}));
+ .concat(Observable.throw({error: 'Sorry, there was an error (after 5 retries). This probably means we can\'t reach our API Server :('}));
})
.subscribe(
data => { this.data = this.chunk(data.tweets, 3); },