Skip to content

Commit 3657cfc

Browse files
kimsey0Danny McCormick
authored andcommitted
Fix "TypeScript" casing in README (#253)
Also, use string interpolation in example. (Would it be appropriate to make this change throughout the samples, and to normalize string quoting at the same time?)
1 parent 57999cd commit 3657cfc

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ These clients are available:
7676

7777
### Use the client
7878

79-
Coding is easy using linear coding with async/await in typescript
79+
Coding is easy using linear coding with async/await in TypeScript
8080

8181
```javascript
8282
import * as bi from 'azure-devops-node-api/interfaces/BuildInterfaces';
@@ -86,7 +86,7 @@ async function run() {
8686
let defs: bi.DefinitionReference[] = await build.getDefinitions(project);
8787

8888
defs.forEach((defRef: bi.DefinitionReference) => {
89-
console.log(defRef.name + ' (' + defRef.id + ')');
89+
console.log(`${defRef.name} (${defRef.id})`);
9090
});
9191
}
9292

0 commit comments

Comments
 (0)