Skip to content

Commit be0fe0b

Browse files
zstd progress
1 parent f0bb206 commit be0fe0b

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

Modules/_zstd/_zstdmodule.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Low level interface to the Zstandard algorthm & the zstd library. */
1+
/* Low level interface to the Zstandard algorithm & the zstd library. */
22

33
#ifndef Py_BUILD_CORE_BUILTIN
44
# define Py_BUILD_CORE_MODULE 1
@@ -497,7 +497,7 @@ _zstd.get_frame_info
497497
frame_buffer: Py_buffer
498498
A bytes-like object, containing the header of a Zstandard frame.
499499
500-
Get Zstandard frame infomation from a frame header.
500+
Get Zstandard frame information from a frame header.
501501
[clinic start generated code]*/
502502

503503
static PyObject *

Modules/_zstd/_zstdmodule.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Low level interface to the Zstandard algorthm & the zstd library. */
1+
/* Low level interface to the Zstandard algorithm & the zstd library. */
22

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

Modules/_zstd/buffer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Low level interface to the Zstandard algorthm & the zstd library. */
1+
/* Low level interface to the Zstandard algorithm & the zstd library. */
22

33
#ifndef ZSTD_BUFFER_H
44
#define ZSTD_BUFFER_H

Modules/_zstd/clinic/_zstdmodule.c.h

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Modules/_zstd/compressor.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Low level interface to the Zstandard algorthm & the zstd library. */
1+
/* Low level interface to the Zstandard algorithm & the zstd library. */
22

33
/* ZstdCompressor class definitions */
44

@@ -713,7 +713,7 @@ _zstd_ZstdCompressor_set_pledged_input_size_impl(ZstdCompressor *self,
713713
unsigned long long size)
714714
/*[clinic end generated code: output=3a09e55cc0e3b4f9 input=afd8a7d78cff2eb5]*/
715715
{
716-
// Error occured while converting argument, should be unreachable
716+
// Error occurred while converting argument, should be unreachable
717717
assert(size != ZSTD_CONTENTSIZE_ERROR);
718718

719719
/* Thread-safe code */

Modules/_zstd/decompressor.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Low level interface to the Zstandard algorthm & the zstd library. */
1+
/* Low level interface to the Zstandard algorithm & the zstd library. */
22

33
/* ZstdDecompressor class definition */
44

Modules/_zstd/zstddict.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Low level interface to the Zstandard algorthm & the zstd library. */
1+
/* Low level interface to the Zstandard algorithm & the zstd library. */
22

33
/* ZstdDict class definitions */
44

Modules/_zstd/zstddict.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Low level interface to the Zstandard algorthm & the zstd library. */
1+
/* Low level interface to the Zstandard algorithm & the zstd library. */
22

33
#ifndef ZSTD_DICT_H
44
#define ZSTD_DICT_H

0 commit comments

Comments
 (0)