aboutsummaryrefslogtreecommitdiffhomepage
path: root/site/versions/master/docs/rule-challenges.md
diff options
context:
space:
mode:
authorGravatar Chaoren Lin <chaoren@users.noreply.github.com>2017-02-09 20:12:32 +0000
committerGravatar Kristina Chodorow <kchodorow@google.com>2017-02-10 15:34:09 +0000
commit751703c9156bda354c4b68dc4b180f7be3522def (patch)
treeea6ae2c1f2a4ae96b7fb6f0b65308114c4610a6e /site/versions/master/docs/rule-challenges.md
parentbc3c57df6a561de7fd021e388705c88c82ebee34 (diff)
Add missing line breaks.
Closes #2511. -- Reviewed-on: https://github.com/bazelbuild/bazel/pull/2511 PiperOrigin-RevId: 147064593 MOS_MIGRATED_REVID=147064593
Diffstat (limited to 'site/versions/master/docs/rule-challenges.md')
-rw-r--r--site/versions/master/docs/rule-challenges.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/site/versions/master/docs/rule-challenges.md b/site/versions/master/docs/rule-challenges.md
index e69e6472b9..fece635b5a 100644
--- a/site/versions/master/docs/rule-challenges.md
+++ b/site/versions/master/docs/rule-challenges.md
@@ -177,7 +177,7 @@ problem in any build system based on library and binary rules. There are two
very common patterns that introduce quadratic memory consumption (and therefore
quadratic time consumption).
-1. Chains of Library Rules
+1. Chains of Library Rules -
Consider the case of a chain of library rules A depends on B, depends on C, and
so on. Then, we want to compute some property over the transitive closure of
these rules, such as the Java runtime classpath, or the C++ linker command for
@@ -186,7 +186,7 @@ this already introduces quadratic memory consumption: the first library
contains one entry on the classpath, the second two, the third three, and so
on, for a total of 1+2+3+...+N = O(N^2) entries.
-2. Binary Rules Depending on the Same Library Rules
+2. Binary Rules Depending on the Same Library Rules -
Consider the case where a set of binaries that depend on the same library
rules; for example, you might have a number of test rules that test the same
library code. Let’s say out of N rules, half the rules are binary rules, and