Skip to content

[3.14] GH-136975: Emend a spelling error (algorthm -> algorithm) (GH-136999) #137003

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: 3.14
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Modules/_zstd/_zstdmodule.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Low level interface to the Zstandard algorthm & the zstd library. */
/* Low level interface to the Zstandard algorithm & the zstd library. */

#ifndef Py_BUILD_CORE_BUILTIN
# define Py_BUILD_CORE_MODULE 1
Expand Down
2 changes: 1 addition & 1 deletion Modules/_zstd/_zstdmodule.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Low level interface to the Zstandard algorthm & the zstd library. */
/* Low level interface to the Zstandard algorithm & the zstd library. */

/* Declarations shared between different parts of the _zstd module*/

Expand Down
2 changes: 1 addition & 1 deletion Modules/_zstd/buffer.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Low level interface to the Zstandard algorthm & the zstd library. */
/* Low level interface to the Zstandard algorithm & the zstd library. */

#ifndef ZSTD_BUFFER_H
#define ZSTD_BUFFER_H
Expand Down
2 changes: 1 addition & 1 deletion Modules/_zstd/compressor.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Low level interface to the Zstandard algorthm & the zstd library. */
/* Low level interface to the Zstandard algorithm & the zstd library. */

/* ZstdCompressor class definitions */

Expand Down
2 changes: 1 addition & 1 deletion Modules/_zstd/decompressor.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Low level interface to the Zstandard algorthm & the zstd library. */
/* Low level interface to the Zstandard algorithm & the zstd library. */

/* ZstdDecompressor class definition */

Expand Down
2 changes: 1 addition & 1 deletion Modules/_zstd/zstddict.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Low level interface to the Zstandard algorthm & the zstd library. */
/* Low level interface to the Zstandard algorithm & the zstd library. */

/* ZstdDict class definitions */

Expand Down
2 changes: 1 addition & 1 deletion Modules/_zstd/zstddict.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Low level interface to the Zstandard algorthm & the zstd library. */
/* Low level interface to the Zstandard algorithm & the zstd library. */

#ifndef ZSTD_DICT_H
#define ZSTD_DICT_H
Expand Down
Loading