Skip to content

Commit

Permalink
Update README.md package => target
Browse files Browse the repository at this point in the history
should be target not package
  • Loading branch information
Passw authored and jin committed Jan 24, 2018
1 parent 5d1e5bd commit 22870ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp-tutorial/stage3/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

In this stage we step it up and showcase how to integrate multiple ```cc_library``` targets from different packages.

Below, we see a similar configuration from Stage 2, except that this BUILD file is in a subdirectory called lib. In Bazel, subdirectories containing BUILD files are known as packages. The new property below visibility will tell Bazel which other packages that should be able to reference this package. So in this case the ```//main``` package can use this ```cc_library```.
Below, we see a similar configuration from Stage 2, except that this BUILD file is in a subdirectory called lib. In Bazel, subdirectories containing BUILD files are known as packages. The new property below visibility will tell Bazel which other packages that should be able to reference this target. So in this case the ```//main``` package can use this ```cc_library```.
```
cc_library(
name = "hello-time",
Expand Down

0 comments on commit 22870ac

Please sign in to comment.