Skip to content

Commit e054e33

Browse files
author
Jonathon Belotti
authored
Fix typos in ARCHITECTURE.md (#821)
1 parent bb38e76 commit e054e33

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

ARCHITECTURE.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Rules Rust - Architecture
22

33
In this file we describe how we think about the architecture
4-
of `rules_rust`. It's goal is to help contributors orient themselves, and to
4+
of `rules_rust`. Its goal is to help contributors orient themselves, and to
55
document code restrictions and assumptions.
66

77
In general we try to follow the common standard defined by
@@ -18,15 +18,15 @@ rules integrating with rules_rust.
1818
the core rules should be able to ignore all other packages.
1919

2020
`//rust:defs.bzl` is the file that all users of `rules_rust` will be using.
21-
Everything in this file can be used (dependend on) and is supported (though
21+
Everything in this file can be used (depended on) and is supported (though
2222
stability is not currently guaranteed across commits, see
2323
[#600](https://github.com/bazelbuild/rules_rust/issues/600)). Typically this
24-
file reexports definitions from other files, typically from `//rust/private`.
24+
file re-exports definitions from other files, typically from `//rust/private`.
2525
Also other packages in `rules_rust` should access core rules through the public
2626
API only. We expect dogfooding our own APIs increases their
2727
quality.
2828

29-
`//rust/private` package contains code rule implementation. This file can only
29+
`//rust/private` package contains code for rule implementation. This file can only
3030
depend on `//rust` and its subpackages. Exceptions are Bazel's builtin packages
3131
and public APIs of other rules (such as `rules_cc`). Depending on
3232
`//rust/private` from packages other than `//rust` is not supported, we reserve

0 commit comments

Comments
 (0)