test(core): correct typo in signal_spec.ts (#50392)

Corrects a typo in the signal_spec.ts file.

PR Close #50392
This commit is contained in:
Brian Douglas
2023-05-21 00:19:34 +01:00
committed by Jessica Janiuk
parent e8c51a1840
commit ea560a7098
+1 -1
View File
@@ -9,7 +9,7 @@
import {computed, setPostSignalSetFn, signal} from '@angular/core/src/signals';
describe('signals', () => {
it('should be a getter which reflect the set value', () => {
it('should be a getter which reflects the set value', () => {
const state = signal(false);
expect(state()).toBeFalse();
state.set(true);