Skip to content

Commit

Permalink
Fix misspellings on docs.bazel.build
Browse files Browse the repository at this point in the history
RELNOTES: None.
PiperOrigin-RevId: 222438226
  • Loading branch information
jin authored and Copybara-Service committed Nov 21, 2018
1 parent 123f3ab commit 7406520
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions site/_sass/footer.scss
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
// Footer styles

$footer-backgroud: #424242;
$footer-background: #424242;
$footer-color: #fff;
$footer-link-color: #e0e0e0;

.footer {
margin-top: 40px;
background-color: $footer-backgroud;
background-color: $footer-background;
color: $footer-color;
padding: 20px;

Expand Down
2 changes: 1 addition & 1 deletion site/_sass/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ code {
}


// Immitate material design buttons
// Imitate material design buttons
.btn-lg {
font-size: 14px;
text-transform: uppercase;
Expand Down
2 changes: 1 addition & 1 deletion site/docs/cquery.html
Original file line number Diff line number Diff line change
Expand Up @@ -317,6 +317,6 @@ <h2 id='known-issues'>Known Issues</h2>
<h2 id='updates'>Updates</h2>

<p>
The Bazel configurability team is continously improving <code>cquery</code>. If you want to
The Bazel configurability team is continuously improving <code>cquery</code>. If you want to
ask questions, stay updated, or get involved, contact [email protected]
</p>
2 changes: 1 addition & 1 deletion site/docs/guide.html
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ <h4 id='repository-cache'>The repository cache</h4>

<p>
Upon each cache hit, the modification time of the file in the cache is
updated. In this way, the last use of a file in the cache directroy can easily
updated. In this way, the last use of a file in the cache directory can easily
be determined, for example to manually clean up the cache. The cache is never
cleaned up automatically, as it might contain a copy of a file that is no
longer available upstream.
Expand Down
2 changes: 1 addition & 1 deletion site/docs/remote-execution-ci.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ If your build or tests fail, it's likely due to the following:
* **Build or test targets are using rules that are incompatible with remote
execution.** See
[Adapting Bazel Rules for Remote Execution](https://docs.bazel.build/versions/master/remote-execution-rules.html)
for details about compatibility wtih remote execution.
for details about compatibility with remote execution.

## Using a custom container in the `rbe_ubuntu1604` CI config

Expand Down
2 changes: 1 addition & 1 deletion site/docs/skylark/depsets.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ If you don't need the merge operation, consider using another type, such as
## Full example


This example is avalable at
This example is available at
[https://github.com/bazelbuild/examples/tree/master/rules/depsets](https://github.com/bazelbuild/examples/tree/master/rules/depsets).

Suppose we have a hypothetical interpreted language Foo. In order to build each
Expand Down
2 changes: 1 addition & 1 deletion site/docs/skylark/performance.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ all instances of your rule.
* If the args are too long for the command line an `ctx.actions.args()` object
can be conditionally or unconditionally written to a param file using
[`ctx.actions.args#use_param_file`](lib/Args.html#use_param_file). This is
done behind the scenes when the action is executed. If you need to explictly
done behind the scenes when the action is executed. If you need to explicitly
control the params file you can write it manually using
[`ctx.actions.write`](lib/actions.html#write).

Expand Down
2 changes: 1 addition & 1 deletion site/docs/user-manual.html
Original file line number Diff line number Diff line change
Expand Up @@ -2551,7 +2551,7 @@ <h3 id='analyze-profile'>The <code>analyze-profile</code> command</h3>
regular expression
<ul>
<li><code id='flag--task_tree_threshold'>--task_tree_threshold</code> skip tasks with duration
less than threshhold, in milliseconds. Default is 50ms</li>
less than threshold, in milliseconds. Default is 50ms</li>
</ul>
</li>
</ul>
Expand Down

0 comments on commit 7406520

Please sign in to comment.