Skip to content

Commit 202c44f

Browse files
author
tadasgo
committed
Fix typo
1 parent afeb8c1 commit 202c44f

4 files changed

+4
-4
lines changed

src/11-record.problem.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ it("Should add values to the cache", () => {
2626
expect(cache.cache["123"]).toEqual("Matt");
2727
});
2828

29-
it("Should remove values to the cache", () => {
29+
it("Should remove values from the cache", () => {
3030
const cache = createCache();
3131

3232
cache.add("123", "Matt");

src/11-record.solution.1.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ it("Should add values to the cache", () => {
2626
expect(cache.cache["123"]).toEqual("Matt");
2727
});
2828

29-
it("Should remove values to the cache", () => {
29+
it("Should remove values from the cache", () => {
3030
const cache = createCache();
3131

3232
cache.add("123", "Matt");

src/11-record.solution.2.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ it("Should add values to the cache", () => {
2828
expect(cache.cache["123"]).toEqual("Matt");
2929
});
3030

31-
it("Should remove values to the cache", () => {
31+
it("Should remove values from the cache", () => {
3232
const cache = createCache();
3333

3434
cache.add("123", "Matt");

src/11-record.solution.3.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ it("Should add values to the cache", () => {
3030
expect(cache.cache["123"]).toEqual("Matt");
3131
});
3232

33-
it("Should remove values to the cache", () => {
33+
it("Should remove values from the cache", () => {
3434
const cache = createCache();
3535

3636
cache.add("123", "Matt");

0 commit comments

Comments
 (0)