Skip to content
This repository was archived by the owner on Dec 18, 2024. It is now read-only.

Commit f61b054

Browse files
crisbetojosephperrott
authored andcommitted
chore: bump year (#363)
1 parent 3f1ff3b commit f61b054

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License
22

3-
Copyright (c) 2017 Google, Inc.
3+
Copyright (c) 2018 Google, Inc.
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

src/app/shared/footer/footer.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
</div>
1414

1515
<div class="docs-footer-copyright">
16-
<p>Powered by Google ©2010-2017. Code licensed under an MIT-style License. Documentation licensed under CC BY 4.0.</p>
16+
<p>Powered by Google ©2010-2018. Code licensed under an MIT-style License. Documentation licensed under CC BY 4.0.</p>
1717
</div>
1818
</div>
1919
</footer>

src/app/shared/stackblitz/stackblitz-writer.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,13 @@ describe('StackblitzWriter', () => {
3939
it('should append correct copyright', () => {
4040
expect(stackblitzWriter._appendCopyright('test.ts', 'NoContent')).toBe(`NoContent
4141
42-
/** Copyright 2017 Google Inc. All Rights Reserved.
42+
/** Copyright 2018 Google Inc. All Rights Reserved.
4343
Use of this source code is governed by an MIT-style license that
4444
can be found in the LICENSE file at http://angular.io/license */`);
4545

4646
expect(stackblitzWriter._appendCopyright('test.html', 'NoContent')).toBe(`NoContent
4747
48-
<!-- Copyright 2017 Google Inc. All Rights Reserved.
48+
<!-- Copyright 2018 Google Inc. All Rights Reserved.
4949
Use of this source code is governed by an MIT-style license that
5050
can be found in the LICENSE file at http://angular.io/license -->`);
5151

src/app/shared/stackblitz/stackblitz-writer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import {VERSION} from '@angular/material';
66
const STACKBLITZ_URL = 'https://run.stackblitz.com/api/angular/v1/';
77

88
const COPYRIGHT =
9-
`Copyright 2017 Google Inc. All Rights Reserved.
9+
`Copyright 2018 Google Inc. All Rights Reserved.
1010
Use of this source code is governed by an MIT-style license that
1111
can be found in the LICENSE file at http://angular.io/license`;
1212

0 commit comments

Comments
 (0)