Skip to content

Commit 6b69419

Browse files
authored
Fixed the JS/TS numbering
1 parent e76ef20 commit 6b69419

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/azure-functions/opentelemetry-howto.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ Examples in this article assume your app is using `IHostApplicationBuilder`, whi
260260
261261
::: zone-end
262262
::: zone pivot="programming-language-javascript"
263-
1. Create a code file in your project, copy and paste the following code in this new file, and save the file as `src/index.js`:
263+
2. Create a code file in your project, copy and paste the following code in this new file, and save the file as `src/index.js`:
264264
265265
### [Application Insights](#tab/app-insights)
266266
@@ -272,14 +272,14 @@ Examples in this article assume your app is using `IHostApplicationBuilder`, whi
272272
273273
---
274274
275-
2. Update the `main` field in your package.json file to include this new `src/index.js` file, which might look like this:
275+
3. Update the `main` field in your package.json file to include this new `src/index.js` file, which might look like this:
276276
277277
```json
278278
"main": "src/{index.js,functions/*.js}"
279279
```
280280
::: zone-end
281281
::: zone pivot="programming-language-typescript"
282-
1. Create a code file in your project, copy and paste the following code in this new file, and save the file as `src/index.ts`:
282+
2. Create a code file in your project, copy and paste the following code in this new file, and save the file as `src/index.ts`:
283283
284284
### [Application Insights](#tab/app-insights)
285285
@@ -291,7 +291,7 @@ Examples in this article assume your app is using `IHostApplicationBuilder`, whi
291291
292292
---
293293
294-
2. Update the `main` field in your package.json file to include the output of this new `src/index.ts` file, which might look like this:
294+
3. Update the `main` field in your package.json file to include the output of this new `src/index.ts` file, which might look like this:
295295
296296
```json
297297
"main": "dist/src/{index.js,functions/*.js}"

0 commit comments

Comments
 (0)