summaryrefslogtreecommitdiffhomepage
path: root/asymptotic-notation.html.markdown
diff options
context:
space:
mode:
authorDivay Prakash <divayprakash@users.noreply.github.com>2019-02-26 17:12:57 +0530
committerGitHub <noreply@github.com>2019-02-26 17:12:57 +0530
commit296e6ae620a8ffa3ecb51f8682fce815bee50b9b (patch)
treeafe710cd9fed30116f2edebc3701736a552a2778 /asymptotic-notation.html.markdown
parente7342265ca779ef3a8cdf7b64218df44f293a0c9 (diff)
Fixes #3486
Diffstat (limited to 'asymptotic-notation.html.markdown')
-rw-r--r--asymptotic-notation.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/asymptotic-notation.html.markdown b/asymptotic-notation.html.markdown
index a1dfe9e1..7a7989d3 100644
--- a/asymptotic-notation.html.markdown
+++ b/asymptotic-notation.html.markdown
@@ -110,7 +110,7 @@ Let's look to the definition of Big-O.
3log n + 100 <= c * log n
```
-Is there some pair of constants c, n<sub>0</sub> that satisfies this for all n > <sub>0</sub>?
+Is there some pair of constants c, n<sub>0</sub> that satisfies this for all n > n<sub>0</sub>?
```
3log n + 100 <= 150 * log n, n > 2 (undefined at n = 1)