Skip to content

Commit

Permalink
fix COS
Browse files Browse the repository at this point in the history
  • Loading branch information
urbanjost committed Dec 24, 2024
1 parent 30946c3 commit 944d3e5
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/cos.3fortran.html
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ <H3>RESULT</H3>
</A>
<BLOCKQUOTE>
<P>
The return value is the tangent of X.
The return value is the cosine of X.
<P>
If X is of the type real, the return value is in radians and lies in the
range <B>-1</B> &lt;= COS(X) &lt;= 1 .
Expand Down
2 changes: 1 addition & 1 deletion docs/intrinsics_slidy.html
Original file line number Diff line number Diff line change
Expand Up @@ -5093,7 +5093,7 @@ <h3 id="options-67"><strong>Options</strong></h3>
</dl></li>
</ul>
<h3 id="result-50"><strong>Result</strong></h3>
<p>The return value is the tangent of <strong>x</strong>.</p>
<p>The return value is the cosine of <strong>x</strong>.</p>
<p>If <strong>x</strong> is of the type real, the return value is in radians and lies in the range <strong>-1 &lt;= cos(x) &lt;= 1</strong> .</p>
<p>If <strong>x</strong> is of type complex, its real part is regarded as a value in radians, often called the phase.</p>
<h3 id="examples-67"><strong>Examples</strong></h3>
Expand Down
2 changes: 1 addition & 1 deletion docs/intrinsics_slidy_by_section.html
Original file line number Diff line number Diff line change
Expand Up @@ -5569,7 +5569,7 @@ <h1><strong>Options</strong></h1>
</ul>
</div><div id="result-50" class="slide section level3">
<h1><strong>Result</strong></h1>
<p>The return value is the tangent of <strong>x</strong>.</p>
<p>The return value is the cosine of <strong>x</strong>.</p>
<p>If <strong>x</strong> is of the type real, the return value is in radians and lies in the range <strong>-1 &lt;= cos(x) &lt;= 1</strong> .</p>
<p>If <strong>x</strong> is of type complex, its real part is regarded as a value in radians, often called the phase.</p>
</div><div id="examples-67" class="slide section level3">
Expand Down
2 changes: 1 addition & 1 deletion md3/COS.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@

### **Result**

The return value is the tangent of **x**.
The return value is the cosine of **x**.

If **x** is of the type _real_, the return value is in radians and lies in
the range **-1 \<= cos(x) \<= 1** .
Expand Down
2 changes: 1 addition & 1 deletion src/M_intrinsics.f90
Original file line number Diff line number Diff line change
Expand Up @@ -7916,7 +7916,7 @@ function help_intrinsics_one(name,prefix,topic,m_help) result (textblock)
' o X : The angle in radians to compute the cosine of.', &
'', &
'RESULT', &
' The return value is the tangent of X.', &
' The return value is the cosine of X.', &
'', &
' If X is of the type real, the return value is in radians and lies in the', &
' range -1 <= COS(X) <= 1 .', &
Expand Down
2 changes: 1 addition & 1 deletion standalone/fman.F90
Original file line number Diff line number Diff line change
Expand Up @@ -7918,7 +7918,7 @@ function help_intrinsics_one(name,prefix,topic,m_help) result (textblock)
' o X : The angle in radians to compute the cosine of.', &
'', &
'RESULT', &
' The return value is the tangent of X.', &
' The return value is the cosine of X.', &
'', &
' If X is of the type real, the return value is in radians and lies in the', &
' range -1 <= COS(X) <= 1 .', &
Expand Down

0 comments on commit 944d3e5

Please sign in to comment.