Skip to content
Merged
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