about summary refs log tree commit diff
diff options
context:
space:
mode:
authorWaffle Lapkin <waffle.lapkin@gmail.com>2025-04-14 19:04:34 +0200
committerWaffle Lapkin <waffle.lapkin@gmail.com>2025-04-15 09:42:30 +0200
commit1397dabd1ec2e58f0cea27fd281dac7104083cca (patch)
treee54e3107a702aae80271afb0f85133e6469d08e4
parentfc8df06f4feb6cc051e15e6596821d276b0797bb (diff)
downloadrust-1397dabd1ec2e58f0cea27fd281dac7104083cca.tar.gz
rust-1397dabd1ec2e58f0cea27fd281dac7104083cca.zip
fix typo
-rw-r--r--src/tools/compiletest/src/runtest.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/compiletest/src/runtest.rs b/src/tools/compiletest/src/runtest.rs
index 24fc2ddb741..093dc7fa56c 100644
--- a/src/tools/compiletest/src/runtest.rs
+++ b/src/tools/compiletest/src/runtest.rs
@@ -2383,7 +2383,7 @@ impl<'test> TestCx<'test> {
 
         if json {
             // escaped newlines in json strings should be readable
-            // in the stderr files. There's no point int being correct,
+            // in the stderr files. There's no point in being correct,
             // since only humans process the stderr files.
             // Thus we just turn escaped newlines back into newlines.
             normalized = normalized.replace("\\n", "\n");