From 0c31df29199f2973a40543f0532052db09a36ac9 Mon Sep 17 00:00:00 2001 From: Agam Rafaeli Date: Fri, 3 Oct 2014 19:46:54 +0100 Subject: [PATCH] docs(guide/Introduction): describe your change... Changed the link of Guice to it's Github repository. --- docs/content/guide/introduction.ngdoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/guide/introduction.ngdoc b/docs/content/guide/introduction.ngdoc index 3fd33cc4fd6c..81bdbeede4e9 100644 --- a/docs/content/guide/introduction.ngdoc +++ b/docs/content/guide/introduction.ngdoc @@ -103,7 +103,7 @@ Angular frees you from the following pains: * **Writing tons of initialization code just to get started:** Typically you need to write a lot of plumbing just to get a basic "Hello World" AJAX app working. With Angular you can bootstrap your app easily using services, which are auto-injected into your application in a - [Guice](http://code.google.com/p/google-guice/)-like dependency-injection style. This allows you + [Guice](https://github.com/google/guice)-like dependency-injection style. This allows you to get started developing features quickly. As a bonus, you get full control over the initialization process in automated tests.