summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJoe Hillenbrand <35273543+SunlightJoe@users.noreply.github.com>2018-03-02 10:25:14 -0800
committerLi Haoyi <haoyi.sg@gmail.com>2018-03-02 10:25:14 -0800
commite7e633bde72b704055b3d2351c4082aa892ed97a (patch)
tree3c7d67925502a6ad65707b08e8db0ca99b9e7455 /docs
parentf1e74448ea2bd09a0eca17626f2b6c84a7af3c88 (diff)
downloadmill-e7e633bde72b704055b3d2351c4082aa892ed97a.tar.gz
mill-e7e633bde72b704055b3d2351c4082aa892ed97a.tar.bz2
mill-e7e633bde72b704055b3d2351c4082aa892ed97a.zip
docs: grammar fixes in Mill Internals (#188)
Diffstat (limited to 'docs')
-rw-r--r--docs/pages/7 - Mill Internals.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/pages/7 - Mill Internals.md b/docs/pages/7 - Mill Internals.md
index d10860dc..3700c9df 100644
--- a/docs/pages/7 - Mill Internals.md
+++ b/docs/pages/7 - Mill Internals.md
@@ -300,14 +300,14 @@ Mill is largely inspired by [Bazel](https://bazel.build/). In particular, the
single-build-hierarchy, where every Target has an on-disk-cache/output-directory
according to their position in the hierarchy, comes from Bazel.
-Bazel is a bit odd in it’s own right. the underlying data model is good
-(hierarchy + cached dependency graph) but getting there is hell it (like SBT) is
+Bazel is a bit odd in it’s own right. The underlying data model is good
+(hierarchy + cached dependency graph) but getting there is hell. It (like SBT) is
also a 3-layer interpretation model, but layers 1 & 2 are almost exactly the
same: mutable python which performs global side effects (layer 3 is the same
-dependency-graph evaluator as SBT/mill)
+dependency-graph evaluator as SBT/mill).
You end up having to deal with a non-trivial python codebase where everything
-happens via
+happens via:
```python
do_something(name="blah")