Skip to content

Commit 68ba7ed

Browse files
authored
Merge pull request google#132 from rmtheis/master
Fix typos in build documentation
2 parents 537092d + 3cc4bef commit 68ba7ed

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

TESTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ Create a `BUILD` file in your code directory with a [test rule](https://bazel.bu
77
You can then test your code by running:
88

99
```sh
10-
blaze test <dir>:<rule>
10+
bazel test <dir>:<rule>
1111
```
1212

1313
All tests can be run with:
1414

1515
```sh
16-
blaze test ...:all
16+
bazel test ...:all
1717
```
1818

1919
## Automated Integration Testing

java/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ INFO: Elapsed time: 3.107s, Critical Path: 0.22s
1717
$
1818
```
1919

20-
The JAR file is accessable using the path shown in the output.
20+
The JAR file is accessible using the path shown in the output.
2121

2222
If you cannot install Bazel, you can build the JAR file manually with:
2323

@@ -26,7 +26,7 @@ mkdir build
2626
javac -d build com/google/openlocationcode/OpenLocationCode.java
2727
```
2828

29-
This will create a JAR file in the `build` directory. Change that to a suitable location.
29+
This will create a JAR file in the `build` directory. Change that to a suitable location.
3030

3131
### Running tests
3232

0 commit comments

Comments
 (0)