Skip to content
This repository was archived by the owner on Jan 30, 2023. It is now read-only.

Commit ca852a1

Browse files
author
Travis Scrimshaw
committed
Some reviewer tweaks.
1 parent 7d3fd60 commit ca852a1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/sage/libs/pynac/pynac.pxd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ cdef extern from "sage/libs/pynac/wrap.h":
319319

320320

321321
GEx g_abs "GiNaC::abs" (GEx x) except + # absolute value
322-
GEx g_step "GiNaC::unit_step" (GEx x) except + # step function
322+
GEx g_step "GiNaC::unit_step" (GEx x) except + # step function
323323
GEx g_csgn "GiNaC::csgn" (GEx x) except + # complex sign
324324
GEx g_conjugate "GiNaC::conjugate_function" (GEx x) except + # complex conjugation
325325
GEx g_real_part "GiNaC::real_part_function" (GEx x) except + # real part

src/sage/symbolic/expression.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7018,7 +7018,7 @@ cdef class Expression(CommutativeRingElement):
70187018
def step(self, hold=False):
70197019
"""
70207020
Return the value of the Heaviside step function, which is 0 for
7021-
negative x, 1/2 for 0, and 1 for positive x.
7021+
negative x, 1 for 0, and 1 for positive x.
70227022
70237023
EXAMPLES::
70247024

0 commit comments

Comments
 (0)