Skip to content

Commit 4d39060

Browse files
authored
examples(with-fastify): comment alteration
1 parent 123ca88 commit 4d39060

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/with-fastify/src/server.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ const app = fastify()
5757
* This is a similar implementation to the one found in the Fastify docs,
5858
* which can be found [here]{@link https://www.fastify.io/docs/latest/Serverless/#should-you-use-fastify-in-a-serverless-platform#Vercel}.
5959
* The `app#ready()` is to indicate that all plugins have been loaded and the server is ready,
60-
* then the `app#server#emit` method is called to handle the incoming request and Fastify handles it from there.
60+
* then the `app#server#emit()` method is called to handle the incoming request and Fastify handles it from there.
6161
*/
6262
export default async (req: IncomingMessage, res: ServerResponse): Promise<void> => {
6363
await app.ready();

0 commit comments

Comments
 (0)