Skip to content

Commit 735bbe5

Browse files
committed
comment change
the quote character in they're is confusing the docs formatter into thinking everything after is a JavaScript string
1 parent 8e35cdc commit 735bbe5

File tree

1 file changed

+1
-1
lines changed
  • Node/quickstarts/genkit-helloworld/functions

1 file changed

+1
-1
lines changed

Node/quickstarts/genkit-helloworld/functions/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ const jokeTeller = ai.defineFlow({
5454
const {stream, response: aiResponse} = ai.generateStream(prompt);
5555

5656
// Send new words of the generative AI response
57-
// to the client as they're generated.
57+
// to the client as they are generated.
5858
for await (const chunk of stream) {
5959
response.sendChunk(chunk.text);
6060
}

0 commit comments

Comments
 (0)