From 1c7b9adc36ec5265c557a6182e217f2c75f07058 Mon Sep 17 00:00:00 2001 From: Steve Mao Date: Mon, 16 Nov 2015 10:39:40 +1100 Subject: [PATCH] docs($http): add a missing semicolon --- src/ng/http.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ng/http.js b/src/ng/http.js index 27f8b62b192d..81ad9e699bcc 100644 --- a/src/ng/http.js +++ b/src/ng/http.js @@ -521,7 +521,7 @@ function $HttpProvider() { * * ``` * module.run(function($http) { - * $http.defaults.headers.common.Authorization = 'Basic YmVlcDpib29w' + * $http.defaults.headers.common.Authorization = 'Basic YmVlcDpib29w'; * }); * ``` *