From c9e0dc3044cac67aa18445942907214f5b9ea735 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=B0=A8=EC=A7=80=ED=9B=88?= Date: Thu, 14 Feb 2019 16:58:55 +0900 Subject: [PATCH] Fix typo --- docs/src/test/java/com/example/restassured/HttpHeaders.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/test/java/com/example/restassured/HttpHeaders.java b/docs/src/test/java/com/example/restassured/HttpHeaders.java index 91c56b2d0..661af50d2 100644 --- a/docs/src/test/java/com/example/restassured/HttpHeaders.java +++ b/docs/src/test/java/com/example/restassured/HttpHeaders.java @@ -43,7 +43,7 @@ public void headers() throws Exception { "Remaining requests permitted in current period"), headerWithName("X-RateLimit-Reset").description( "Time at which the rate limit period will reset")))) - .header("Authroization", "Basic dXNlcjpzZWNyZXQ=") // <4> + .header("Authorization", "Basic dXNlcjpzZWNyZXQ=") // <4> .when().get("/people") .then().assertThat().statusCode(is(200)); // end::headers[]