diff options
Diffstat (limited to 'clang/utils/check_cfc')
-rwxr-xr-x | clang/utils/check_cfc/check_cfc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/utils/check_cfc/check_cfc.py b/clang/utils/check_cfc/check_cfc.py index c6ab9abf235..7a739f46e30 100755 --- a/clang/utils/check_cfc/check_cfc.py +++ b/clang/utils/check_cfc/check_cfc.py @@ -237,7 +237,7 @@ def run_step(command, my_env, error_on_failure): def get_temp_file_name(suffix): """Get a temporary file name with a particular suffix. Let the caller be - reponsible for deleting it.""" + responsible for deleting it.""" tf = tempfile.NamedTemporaryFile(suffix=suffix, delete=False) tf.close() return tf.name |