Skip to content

Commit 8877458

Browse files
committed
Fix typo
1 parent 33586a4 commit 8877458

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mypyc/codegen/emitfunc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -915,7 +915,7 @@ def emit_unsigned_int_cast(self, type: RType) -> str:
915915
def encode_c_string_literal(b: bytes) -> str:
916916
"""Convert bytestring to the C string literal syntax (with necessary escaping).
917917
918-
For example, b'foo\n' gets coverted to 'foo\\n' (note that double quotes are not added).
918+
For example, b'foo\n' gets converted to 'foo\\n' (note that double quotes are not added).
919919
"""
920920
if not _translation_table:
921921
# Initialize the translation table on the first call.

0 commit comments

Comments
 (0)