Correct grammar

This commit is contained in:
Alireza Adli 2024-01-24 11:20:00 -05:00
parent 1eb0ac69b0
commit 56c4439e44
4 changed files with 5 additions and 5 deletions

View File

@ -1,4 +1,4 @@
This is pdfTeX, Version 3.141592653-2.6-1.40.24 (MiKTeX 21.12) (preloaded format=pdflatex 2022.2.20) 24 JAN 2024 11:12
This is pdfTeX, Version 3.141592653-2.6-1.40.24 (MiKTeX 21.12) (preloaded format=pdflatex 2022.2.20) 24 JAN 2024 11:19
entering extended mode
restricted \write18 enabled.
%&-line parsing enabled.
@ -636,7 +636,7 @@ Package rerunfilecheck Info: File `report.out' has not changed.
)
Here is how much of TeX's memory you used:
16709 strings out of 478659
321287 string characters out of 2845446
321285 string characters out of 2845446
771825 words of memory out of 3000000
34592 multiletter control sequences out of 15000+600000
425069 words of font info for 66 fonts, out of 8000000 for 9000
@ -648,7 +648,7 @@ Here is how much of TeX's memory you used:
s/cm/cmtt10.pfb><C:/Users/a_adli/AppData/Local/Programs/MiKTeX/fonts/type1/urw/
times/utmb8a.pfb><C:/Users/a_adli/AppData/Local/Programs/MiKTeX/fonts/type1/urw
/times/utmr8a.pfb>
Output written on report.pdf (7 pages, 174206 bytes).
Output written on report.pdf (7 pages, 174041 bytes).
PDF statistics:
137 PDF objects out of 1000 (max. 8388607)
25 named destinations out of 1000 (max. 500000)

Binary file not shown.

Binary file not shown.

View File

@ -157,9 +157,9 @@ In the \LaTeX file of this document, please locate the code for inserting progra
\begin{code}
import math
def circle_square(radius):
def circle_area(radius):
return math.pi * radius ** 2
print(circle_square(3))
print(circle_area(3))
\end{code}
(Select the programming language and configure color settings from lines 17-30 of the \LaTeX file for this document).