Fix comment punctuation

This commit is contained in:
Art Lowel
2021-06-14 10:30:17 +02:00
committed by GitHub
parent 64049fdcf7
commit 04b4f1cf58

View File

@@ -364,7 +364,7 @@ export class MetadataService {
private getFirstAllowedFormatBitstreamLink(bitstreamRd: RemoteData<PaginatedList<Bitstream>>): Observable<string> { private getFirstAllowedFormatBitstreamLink(bitstreamRd: RemoteData<PaginatedList<Bitstream>>): Observable<string> {
return observableOf(bitstreamRd.payload).pipe( return observableOf(bitstreamRd.payload).pipe(
// Because there can be more than one page of bitstreams, this expand operator // 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 // retrieve pages until a match is found
expand((paginatedList: PaginatedList<Bitstream>) => { expand((paginatedList: PaginatedList<Bitstream>) => {
if (hasNoValue(paginatedList.next)) { if (hasNoValue(paginatedList.next)) {