diff --git a/doc/index.html b/doc/index.html index d571cfa..8b6221c 100644 --- a/doc/index.html +++ b/doc/index.html @@ -156,7 +156,7 @@ add the following lines to your WORKSPACE file git_repository( name = "com_github_gflags_gflags", remote = "https://github.com/gflags/gflags.git", - tags = ["v2.2.2"] + tag = "v2.2.2" ) @@ -172,7 +172,7 @@ In order to use the single-threaded shared gflags library, use the dependency cc_binary( name = "foo", srcs = ["main.cc"], - deps = ["//external:gflags"], + deps = ["@com_github_gflags_gflags//:gflags"], )