Skip to content

Commit 9e6b0d1

Browse files
committed
Fix typo
1 parent 2538933 commit 9e6b0d1

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
lines changed

document-your-python-project-with-mkdocs/source_code_final/calculator/calculations.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def add(a: Union[float, int], b: Union[float, int]) -> float:
3737
b: A number representing the second addend in the addition.
3838
3939
Returns:
40-
A number representing the artihmetic sum of `a` and `b`.
40+
A number representing the arithmetic sum of `a` and `b`.
4141
"""
4242

4343
return float(a + b)

document-your-python-project-with-mkdocs/source_code_final/site/reference/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -459,7 +459,7 @@ <h2 id="calculator.calculations.add" class="doc doc-heading">
459459
<tbody>
460460
<tr>
461461
<td><code>float</code></td>
462-
<td><p>A number representing the artihmetic sum of <code>a</code> and <code>b</code>.</p></td>
462+
<td><p>A number representing the arithmetic sum of <code>a</code> and <code>b</code>.</p></td>
463463
</tr>
464464
</tbody>
465465
</table>
@@ -479,7 +479,7 @@ <h2 id="calculator.calculations.add" class="doc doc-heading">
479479
<span class="sd"> b: A number representing the second addend in the addition.</span>
480480

481481
<span class="sd"> Returns:</span>
482-
<span class="sd"> A number representing the artihmetic sum of `a` and `b`.</span>
482+
<span class="sd"> A number representing the arithmetic sum of `a` and `b`.</span>
483483
<span class="sd"> &quot;&quot;&quot;</span>
484484

485485
<span class="k">return</span> <span class="nb">float</span><span class="p">(</span><span class="n">a</span> <span class="o">+</span> <span class="n">b</span><span class="p">)</span>

document-your-python-project-with-mkdocs/source_code_step_3/calculator/calculations.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def add(a: Union[float, int], b: Union[float, int]) -> float:
3737
b: A number representing the second addend in the addition.
3838
3939
Returns:
40-
A number representing the artihmetic sum of `a` and `b`.
40+
A number representing the arithmetic sum of `a` and `b`.
4141
"""
4242

4343
return float(a + b)

document-your-python-project-with-mkdocs/source_code_step_4/calculator/calculations.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def add(a: Union[float, int], b: Union[float, int]) -> float:
3737
b: A number representing the second addend in the addition.
3838
3939
Returns:
40-
A number representing the artihmetic sum of `a` and `b`.
40+
A number representing the arithmetic sum of `a` and `b`.
4141
"""
4242

4343
return float(a + b)

document-your-python-project-with-mkdocs/source_code_step_5/calculator/calculations.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def add(a: Union[float, int], b: Union[float, int]) -> float:
3737
b: A number representing the second addend in the addition.
3838
3939
Returns:
40-
A number representing the artihmetic sum of `a` and `b`.
40+
A number representing the arithmetic sum of `a` and `b`.
4141
"""
4242

4343
return float(a + b)

document-your-python-project-with-mkdocs/source_code_step_5/site/reference/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -459,7 +459,7 @@ <h2 id="calculator.calculations.add" class="doc doc-heading">
459459
<tbody>
460460
<tr>
461461
<td><code>float</code></td>
462-
<td><p>A number representing the artihmetic sum of <code>a</code> and <code>b</code>.</p></td>
462+
<td><p>A number representing the arithmetic sum of <code>a</code> and <code>b</code>.</p></td>
463463
</tr>
464464
</tbody>
465465
</table>
@@ -479,7 +479,7 @@ <h2 id="calculator.calculations.add" class="doc doc-heading">
479479
<span class="sd"> b: A number representing the second addend in the addition.</span>
480480

481481
<span class="sd"> Returns:</span>
482-
<span class="sd"> A number representing the artihmetic sum of `a` and `b`.</span>
482+
<span class="sd"> A number representing the arithmetic sum of `a` and `b`.</span>
483483
<span class="sd"> &quot;&quot;&quot;</span>
484484

485485
<span class="k">return</span> <span class="nb">float</span><span class="p">(</span><span class="n">a</span> <span class="o">+</span> <span class="n">b</span><span class="p">)</span>

document-your-python-project-with-mkdocs/source_code_step_6/calculator/calculations.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def add(a: Union[float, int], b: Union[float, int]) -> float:
3737
b: A number representing the second addend in the addition.
3838
3939
Returns:
40-
A number representing the artihmetic sum of `a` and `b`.
40+
A number representing the arithmetic sum of `a` and `b`.
4141
"""
4242

4343
return float(a + b)

document-your-python-project-with-mkdocs/source_code_step_6/site/reference/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -459,7 +459,7 @@ <h2 id="calculator.calculations.add" class="doc doc-heading">
459459
<tbody>
460460
<tr>
461461
<td><code>float</code></td>
462-
<td><p>A number representing the artihmetic sum of <code>a</code> and <code>b</code>.</p></td>
462+
<td><p>A number representing the arithmetic sum of <code>a</code> and <code>b</code>.</p></td>
463463
</tr>
464464
</tbody>
465465
</table>
@@ -479,7 +479,7 @@ <h2 id="calculator.calculations.add" class="doc doc-heading">
479479
<span class="sd"> b: A number representing the second addend in the addition.</span>
480480

481481
<span class="sd"> Returns:</span>
482-
<span class="sd"> A number representing the artihmetic sum of `a` and `b`.</span>
482+
<span class="sd"> A number representing the arithmetic sum of `a` and `b`.</span>
483483
<span class="sd"> &quot;&quot;&quot;</span>
484484

485485
<span class="k">return</span> <span class="nb">float</span><span class="p">(</span><span class="n">a</span> <span class="o">+</span> <span class="n">b</span><span class="p">)</span>

0 commit comments

Comments
 (0)