Skip to content

Commit

Permalink
Style.
Browse files Browse the repository at this point in the history
  • Loading branch information
seanmorris committed Sep 5, 2024
1 parent c311e21 commit 72bf4ba
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ const userSchema = s.record({
email: s.string(),
});

const userRecord = userSchema({id: 1, email: "fake@example.com"});
const userRecord = userSchema({id: 1, email: 'fake@example.com'});

console.log(userRecord);
```
Expand Down Expand Up @@ -463,8 +463,8 @@ const company = companySchema({
name: 'Acme Corporation',
phone: '+1-000-555-1234',
address: '123 Fake St, Anytown, USA',
openHours: "9AM-7PM",
slogan: "We do business.",
openHours: '9AM-7PM',
slogan: 'We do business.',
});
```

Expand Down Expand Up @@ -513,8 +513,8 @@ companySchema({
name: 'Acme Corporation',
phone: '+1-000-555-1234',
address: '123 Fake St, Anytown, USA',
openHours: "9AM-7PM",
slogan: "We do business.",
openHours: '9AM-7PM',
slogan: 'We do business.',
});
```

Expand Down Expand Up @@ -557,8 +557,8 @@ const company = companySchema({
name: 'Acme Corporation',
phone: '+1-000-555-1234',
address: '123 Fake St, Anytown, USA',
openHours: "9AM-7PM",
slogan: "We do business.",
openHours: '9AM-7PM',
slogan: 'We do business.',
});
console.log({company});
Expand Down

0 comments on commit 72bf4ba

Please sign in to comment.