Skip to content

Commit eb758e6

Browse files
committed
more capitals for Noetherian
1 parent 9dca297 commit eb758e6

7 files changed

Lines changed: 8 additions & 9 deletions

File tree

src/sage/algebras/quatalg/quaternion_algebra.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -515,7 +515,7 @@ def is_integral_domain(self, proof=True) -> bool:
515515

516516
def is_noetherian(self) -> bool:
517517
"""
518-
Return ``True`` always, since any quaternion algebra is a noetherian
518+
Return ``True`` always, since any quaternion algebra is a Noetherian
519519
ring (because it is a finitely generated module over a field).
520520
521521
EXAMPLES::

src/sage/algebras/steenrod/steenrod_algebra.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3054,7 +3054,7 @@ def is_integral_domain(self, proof=True):
30543054

30553055
def is_noetherian(self):
30563056
"""
3057-
This algebra is noetherian if and only if it is finite.
3057+
This algebra is Noetherian if and only if it is finite.
30583058
30593059
EXAMPLES::
30603060

src/sage/categories/commutative_rings.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -283,8 +283,7 @@ class Finite(CategoryWithAxiom):
283283
"""
284284
def extra_super_categories(self):
285285
r"""
286-
Let Sage knows that finite commutative rings
287-
are Noetherian.
286+
Let Sage know that finite commutative rings are Noetherian.
288287
289288
EXAMPLES::
290289

src/sage/categories/group_algebras.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@ def is_integral_domain(self, proof=True):
358358
return ans
359359

360360
# I haven't written is_noetherian(), because I don't know when group
361-
# algebras are noetherian, and I haven't written is_prime_field(), because
361+
# algebras are Noetherian, and I haven't written is_prime_field(), because
362362
# I don't know if that means "is canonically isomorphic to a prime field"
363363
# or "is identical to a prime field".
364364

src/sage/categories/principal_ideal_domains.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ def _test_gcd_vs_xgcd(self, **options):
125125

126126
def is_noetherian(self) -> bool:
127127
"""
128-
Every principal ideal domain is noetherian, so we return ``True``.
128+
Every principal ideal domain is Noetherian, so we return ``True``.
129129
130130
EXAMPLES::
131131

src/sage/rings/function_field/order.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ def is_field(self, proof=True):
162162

163163
def is_noetherian(self):
164164
"""
165-
Return ``True`` since orders in function fields are noetherian.
165+
Return ``True`` since orders in function fields are Noetherian.
166166
167167
EXAMPLES::
168168

src/sage/rings/polynomial/infinite_polynomial_ring.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1098,11 +1098,11 @@ def is_noetherian(self):
10981098
10991099
Since Infinite Polynomial Rings must have at least one
11001100
generator, they have infinitely many variables and are thus
1101-
not noetherian, as a ring.
1101+
not Noetherian, as a ring.
11021102
11031103
.. NOTE::
11041104
1105-
Infinite Polynomial Rings over a field `F` are noetherian as
1105+
Infinite Polynomial Rings over a field `F` are Noetherian as
11061106
`F(G)` modules, where `G` is the symmetric group of the
11071107
natural numbers. But this is not what the method
11081108
``is_noetherian()`` is answering.

0 commit comments

Comments
 (0)