Skip to content

Commit

Permalink
docs: fixed the package name in README. (#179)
Browse files Browse the repository at this point in the history
fix #162
  • Loading branch information
KostyaTretyak authored Nov 28, 2024
1 parent 5f47d13 commit 90a8de0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ Examples
```javascript
const http = require('node:http');
const { inspect } = require('node:util');
const Busboy = require('busboy');
const Busboy = require('@fastify/busboy');

http.createServer((req, res) => {
if (req.method === 'POST') {
Expand Down Expand Up @@ -107,7 +107,7 @@ const path = require('node:path');
const os = require('node:os');
const fs = require('node:fs');

const Busboy = require('busboy');
const Busboy = require('@fastify/busboy');

http.createServer(function(req, res) {
if (req.method === 'POST') {
Expand Down Expand Up @@ -135,7 +135,7 @@ http.createServer(function(req, res) {
const http = require('node:http');
const { inspect } = require('node:util');

const Busboy = require('busboy');
const Busboy = require('@fastify/busboy');

http.createServer(function(req, res) {
if (req.method === 'POST') {
Expand Down

0 comments on commit 90a8de0

Please sign in to comment.