Skip to content

Commit 4b34798

Browse files
branding tweak
1 parent e5475d6 commit 4b34798

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ let connection = new azdev.WebApi(orgUrl, authHandler);
4343
```javascript
4444
import * as ba from 'azure-devops-node-api/BuildApi';
4545

46-
let vstsBuild: ba.IBuildApi = await connection.getBuildApi();
46+
let build: ba.IBuildApi = await connection.getBuildApi();
4747
```
4848

4949
#### Available clients
@@ -83,7 +83,7 @@ import * as bi from 'azure-devops-node-api/interfaces/BuildInterfaces';
8383

8484
async function run() {
8585
let project: string = 'myProject';
86-
let defs: bi.DefinitionReference[] = await vstsBuild.getDefinitions(project);
86+
let defs: bi.DefinitionReference[] = await build.getDefinitions(project);
8787

8888
defs.forEach((defRef: bi.DefinitionReference) => {
8989
console.log(defRef.name + ' (' + defRef.id + ')');
@@ -95,7 +95,7 @@ run();
9595

9696
## APIs
9797

98-
To see what APIs are available, see the appropriate client interface. For example, [GitApi.ts](https://github.com/Microsoft/vsts-node-api/blob/master/api/GitApi.ts)
98+
To see what APIs are available, see the appropriate client interface. For example, [GitApi.ts](https://github.com/Microsoft/azure-pipelines-node-api/blob/master/api/GitApi.ts)
9999

100100
## Running Samples
101101

0 commit comments

Comments
 (0)