summaryrefslogtreecommitdiff
path: root/tests/src/JIT
diff options
context:
space:
mode:
authorLi Shengqiu <lsq9292003@sohu.com>2018-11-09 22:35:58 +0800
committerJan Kotas <jkotas@microsoft.com>2018-11-09 06:35:58 -0800
commit0f6e360d4b4c20c3bcff03ad27c4dcad38c07f41 (patch)
treebc86ce2a6f861f9055704bcb7691b2b47947564b /tests/src/JIT
parent9406df8e5f93fd437b6af236df0b0aaba6cf9a31 (diff)
downloadcoreclr-0f6e360d4b4c20c3bcff03ad27c4dcad38c07f41.tar.gz
coreclr-0f6e360d4b4c20c3bcff03ad27c4dcad38c07f41.tar.bz2
coreclr-0f6e360d4b4c20c3bcff03ad27c4dcad38c07f41.zip
Fix typos in comments (#20908)
Diffstat (limited to 'tests/src/JIT')
-rw-r--r--tests/src/JIT/jit64/regress/vsw/528315/simple-repro.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/src/JIT/jit64/regress/vsw/528315/simple-repro.cs b/tests/src/JIT/jit64/regress/vsw/528315/simple-repro.cs
index fa5258f082..02253e2e1f 100644
--- a/tests/src/JIT/jit64/regress/vsw/528315/simple-repro.cs
+++ b/tests/src/JIT/jit64/regress/vsw/528315/simple-repro.cs
@@ -28,7 +28,7 @@ internal class NodeFactory
case NodeType.Not:
return this.Conditional(condition.Child, falseBranch, trueBranch); // <-- tail recursion
}
- return falseBranch; //<- should return the orignal trueBranch
+ return falseBranch; //<- should return the original trueBranch
}
private class Test