Skip to content

Commit 469d042

Browse files
committed
typo: reponse -> response
1 parent ba6e638 commit 469d042

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

articles/cognitive-services/QnAMaker/Quickstarts/update-kb-java.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ public class UpdateKB {
272272
* Sends the request to update the knowledge base.
273273
* @param kb The ID for the existing knowledge base
274274
* @param req The data source for the updated knowledge base
275-
* @return Reponse Returns the response from a PATCH request
275+
* @return Response Returns the response from a PATCH request
276276
*/
277277
public static Response UpdateKB (String kb, Request req) throws Exception {
278278
URL url = new URL(host + service + method + kb);

articles/notification-hubs/notification-hubs-android-push-notification-google-gcm-get-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -659,7 +659,7 @@ Normally, you would send notifications using a backend server. For some cases, y
659659
bodyStream.write(json.getBytes());
660660
bodyStream.close();
661661

662-
// Get reponse
662+
// Get response
663663
urlConnection.connect();
664664
int responseCode = urlConnection.getResponseCode();
665665
if ((responseCode != 200) && (responseCode != 201)) {

0 commit comments

Comments
 (0)