Skip to content

Commit ffb9f36

Browse files
committed
Make comment less official
1 parent ac745a8 commit ffb9f36

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import { Plugin } from '@posthog/plugin-scaffold'
22
import type { RequestInfo, RequestInit, Response } from 'node-fetch'
33

4-
/** fetch only declared, as it's provided as a plugin VM global. */
4+
// fetch only declared, as it's provided as a plugin VM global
55
declare function fetch(url: RequestInfo, init?: RequestInit): Promise<Response>
66

7-
/** Internal library function. */
7+
// Internal library function
88
async function fetchTrulyRandomInteger(): Promise<number> {
99
const response = await fetch(
1010
'https://www.random.org/integers/?num=1&min=1&max=1000000000&col=1&base=10&format=plain&rnd=new'
@@ -13,7 +13,7 @@ async function fetchTrulyRandomInteger(): Promise<number> {
1313
return integer
1414
}
1515

16-
/** The famed Hello World plugin itself. */
16+
// The famed Hello World plugin itself
1717
const helloWorld: Plugin = {
1818
setupPlugin: async ({ config }) => {
1919
console.log(`Setting up the plugin:\n${config.greeting}`)

0 commit comments

Comments
 (0)