diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index bba5474ab..bad1c0b18 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -14,7 +14,7 @@ Here are some ways you can contribute to this documentation: - To make small changes to an article, [Contribute using GitHub](#contribute-using-github). - To make large changes, or changes that involve code, [Contribute using Git](#contribute-using-git). - Report documentation bugs via GitHub Issues -- Request new documentation at the [Office Developer Platform UserVoice](http://officespdev.uservoice.com) site. +- Request new documentation or report documentation issues via [GitHub Issues](https://github.com/microsoftgraph/msgraph-sdk-javascript/issues) in this repository. ## Contribute using GitHub diff --git a/README.md b/README.md index d2f31fc62..080d6ab89 100644 --- a/README.md +++ b/README.md @@ -120,6 +120,9 @@ The Microsoft Graph client is designed to make it simple to make calls to Micros For information on how to create a client instance, see [Creating Client Instance](./docs/CreatingClientInstance.md) +> **Note:** Authentication provider samples in the README and docs are illustrative. They show how to wire an `AuthenticationProvider` into the client; they are not production-ready credential handling. For unit tests and mocking, see [`test/DummyAuthenticationProvider.ts`](./test/DummyAuthenticationProvider.ts) and the helpers under [`test/`](./test/). + + ### 3. Make requests to the graph Once you have authentication setup and an instance of Client, you can begin to make calls to the service. All requests should start with `client.api(path)` and end with an [action](./docs/Actions.md). diff --git a/src/GraphRequest.ts b/src/GraphRequest.ts index cfa91d33e..da0e9821a 100644 --- a/src/GraphRequest.ts +++ b/src/GraphRequest.ts @@ -502,7 +502,7 @@ export class GraphRequest { /** * @public - * Sets the api endpoint version for a request + * Sets the response type for a request * @param {ResponseType} responseType - The response type value * @returns The same GraphRequest instance that is being called with */