Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
Chalarangelo committed Dec 8, 2024
1 parent 6927c39 commit 1f27adf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions content/snippets/js/s/complex-object-collections-in-memory.md
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ If you're looking for the complete implementation, you can find it below. More c
```js [src/core/model.js]
import RecordSet from '#src/core/recordSet.js';

class Model {
export default class Model {
static instances = {};

static prepare(model) {
Expand Down Expand Up @@ -372,7 +372,7 @@ class Model {
```

```js [src/core/recordSet.js]
class RecordSet extends Array {
export default class RecordSet extends Array {
where(query) {
return RecordSet.from(
this.filter(record => {
Expand Down

0 comments on commit 1f27adf

Please sign in to comment.