Skip to content

Commit b5a0dac

Browse files
committed
Fix typos
1 parent d15f813 commit b5a0dac

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

evals/apps/web/src/app/runs/new/settings-diff.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export function SettingsDiff({
2828
const isDefault = JSON.stringify(defaultValue) === JSON.stringify(customValue)
2929

3030
return isDefault ? null : (
31-
<SetttingDiff
31+
<SettingDiff
3232
key={key}
3333
name={key}
3434
defaultValue={JSON.stringify(defaultValue, null, 2)}
@@ -46,7 +46,7 @@ type SettingDiffProps = HTMLAttributes<HTMLDivElement> & {
4646
customValue?: string
4747
}
4848

49-
export function SetttingDiff({ name, defaultValue, customValue, ...props }: SettingDiffProps) {
49+
export function SettingDiff({ name, defaultValue, customValue, ...props }: SettingDiffProps) {
5050
return (
5151
<Fragment {...props}>
5252
<div className="overflow-hidden font-mono">{name}</div>

evals/packages/db/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Update `src/schema.ts` as needed, and then run:
66
pnpm db:generate
77
```
88

9-
Inspect the generated sql in the migration filed added to `drizzle/`.
9+
Inspect the sql in the migration file added to `drizzle/`.
1010

1111
If it looks okay, then run:
1212

0 commit comments

Comments
 (0)