@@ -84,7 +84,7 @@ def is_skew(seq, verbose=False):
84
84
- ``seq`` -- the sequence that should be checked
85
85
86
86
- ``verbose`` -- boolean (default: ``False``); if ``True`` the function
87
- will be verbose when the sequences do not satisfy the contraints
87
+ will be verbose when the sequences do not satisfy the constraints
88
88
89
89
EXAMPLES::
90
90
@@ -130,7 +130,7 @@ def is_symmetric(seq, verbose=False) -> bool:
130
130
- ``seq`` -- the sequence that should be checked
131
131
132
132
- ``verbose`` -- boolean (default: ``False``); if ``True`` the function will be
133
- verbose when the sequences do not satisfy the contraints
133
+ verbose when the sequences do not satisfy the constraints
134
134
135
135
EXAMPLES::
136
136
@@ -180,7 +180,7 @@ def is_T_sequences_set(sequences, verbose=False):
180
180
- ``sequences`` -- list of four sequences
181
181
182
182
- ``verbose`` -- boolean (default: ``False``); if ``True`` the function will be
183
- verbose when the sequences do not satisfy the contraints
183
+ verbose when the sequences do not satisfy the constraints
184
184
185
185
EXAMPLES::
186
186
@@ -643,7 +643,7 @@ def is_base_sequences_tuple(base_sequences, verbose=False):
643
643
- ``base_sequences`` -- the list of 4 sequences that should be checked
644
644
645
645
- ``verbose`` -- boolean (default: ``False``); if ``True`` the function
646
- will be verbose when the sequences do not satisfy the contraints
646
+ will be verbose when the sequences do not satisfy the constraints
647
647
648
648
EXAMPLES::
649
649
@@ -656,7 +656,7 @@ def is_base_sequences_tuple(base_sequences, verbose=False):
656
656
657
657
sage: seqs = [[1, -1], [1, 1], [-1], [2]]
658
658
sage: is_base_sequences_tuple(seqs, verbose=True)
659
- Base sequences should only contiain -1, +1, found 2
659
+ Base sequences should only contain -1, +1, found 2
660
660
False
661
661
662
662
TESTS:
@@ -694,7 +694,7 @@ def is_base_sequences_tuple(base_sequences, verbose=False):
694
694
for el in seq :
695
695
if abs (el ) != 1 :
696
696
if verbose :
697
- print (f'Base sequences should only contiain -1, +1, found { el } ' )
697
+ print (f'Base sequences should only contain -1, +1, found { el } ' )
698
698
return False
699
699
700
700
for j in range (1 , n + p ):
0 commit comments