Skip to content

Commit 4ed53ae

Browse files
committed
Fix typo in docstring
longuest -> longest
1 parent 0d798c6 commit 4ed53ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

keras/preprocessing/sequence.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
def pad_sequences(sequences, maxlen=None, dtype='int32', padding='pre', truncating='pre', value=0.):
88
"""
99
Pad each sequence to the same length:
10-
the length of the longuest sequence.
10+
the length of the longest sequence.
1111
1212
If maxlen is provided, any sequence longer
1313
than maxlen is truncated to maxlen. Truncation happens off either the beginning (default) or

0 commit comments

Comments
 (0)