Skip to content

Commit

Permalink
Fix comment punctuation
Browse files Browse the repository at this point in the history
  • Loading branch information
artlowel authored Jun 14, 2021
1 parent 64049fd commit 04b4f1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/core/metadata/metadata.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ export class MetadataService {
private getFirstAllowedFormatBitstreamLink(bitstreamRd: RemoteData<PaginatedList<Bitstream>>): Observable<string> {
return observableOf(bitstreamRd.payload).pipe(
// Because there can be more than one page of bitstreams, this expand operator
// will retrieve them in turn due to the take(1) at the bottom, it will only
// will retrieve them in turn. Due to the take(1) at the bottom, it will only
// retrieve pages until a match is found
expand((paginatedList: PaginatedList<Bitstream>) => {
if (hasNoValue(paginatedList.next)) {
Expand Down

0 comments on commit 04b4f1c

Please sign in to comment.