Skip to content

Commit 8031d26

Browse files
authored
docs: update changelog reference (#491)
1 parent 430695d commit 8031d26

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/app/changelog/changelog.service.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ import { catchError, map } from 'rxjs/operators'
66

77
@Injectable()
88
export class ChangelogService {
9-
private readonly url = 'https://raw.githubusercontent.com/angular-split/angular-split/refs/heads/main/projects/CHANGELOG.md'
9+
private readonly url =
10+
'https://raw.githubusercontent.com/angular-split/angular-split/refs/heads/main/projects/angular-split/CHANGELOG.md'
1011
private cachedHtml = ''
1112

1213
constructor(private http: HttpClient) {
1314
marked.setOptions({})
1415
}
1516

16-
1717
getHtml(): Observable<string> {
1818
if (this.cachedHtml !== '') {
1919
return of(this.cachedHtml)

0 commit comments

Comments
 (0)