@@ -84,7 +84,7 @@ def is_skew(seq, verbose=False):
8484 - ``seq`` -- the sequence that should be checked
8585
8686 - ``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
8888
8989 EXAMPLES::
9090
@@ -130,7 +130,7 @@ def is_symmetric(seq, verbose=False) -> bool:
130130 - ``seq`` -- the sequence that should be checked
131131
132132 - ``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
134134
135135 EXAMPLES::
136136
@@ -180,7 +180,7 @@ def is_T_sequences_set(sequences, verbose=False):
180180 - ``sequences`` -- list of four sequences
181181
182182 - ``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
184184
185185 EXAMPLES::
186186
@@ -643,7 +643,7 @@ def is_base_sequences_tuple(base_sequences, verbose=False):
643643 - ``base_sequences`` -- the list of 4 sequences that should be checked
644644
645645 - ``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
647647
648648 EXAMPLES::
649649
@@ -656,7 +656,7 @@ def is_base_sequences_tuple(base_sequences, verbose=False):
656656
657657 sage: seqs = [[1, -1], [1, 1], [-1], [2]]
658658 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
660660 False
661661
662662 TESTS:
@@ -694,7 +694,7 @@ def is_base_sequences_tuple(base_sequences, verbose=False):
694694 for el in seq :
695695 if abs (el ) != 1 :
696696 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 } ' )
698698 return False
699699
700700 for j in range (1 , n + p ):
0 commit comments