Skip to content

Commit

Permalink
Fix typo - "Databas" -> "Database" (#6062)
Browse files Browse the repository at this point in the history
  • Loading branch information
WalshyDev committed Jun 15, 2024
1 parent 31cd51f commit 267761b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/unlucky-hairs-train.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"wrangler": patch
---

fix: typo in `wrangler d1 execute` saying "Databas" instead of "Database"
2 changes: 1 addition & 1 deletion packages/wrangler/src/d1/execute.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@ async function executeRemotely({
"Total queries executed": numQueries,
"Rows read": meta.rows_read,
"Rows written": meta.rows_written,
"Databas size (MB)": (meta.size_after / 1_000_000).toFixed(2),
"Database size (MB)": (meta.size_after / 1_000_000).toFixed(2),
},
],
success: true,
Expand Down

0 comments on commit 267761b

Please sign in to comment.