Skip to content

Commit

Permalink
Fix typos in comments
Browse files Browse the repository at this point in the history
  • Loading branch information
dgrunwald committed Oct 1, 2013
1 parent 91693a5 commit eee2794
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ICSharpCode.Decompiler/ILAst/ILAstBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -413,11 +413,11 @@ List<ByteCode> StackAnalysis(MethodDefinition methodDef)
}
}

// Occasionally the compilers or obfuscators generate unreachable code (which might be intentonally invalid)
// I belive it is safe to just remove it
// Occasionally the compilers or obfuscators generate unreachable code (which might be intentionally invalid)
// I believe it is safe to just remove it
body.RemoveAll(b => b.StackBefore == null);

// Genertate temporary variables to replace stack
// Generate temporary variables to replace stack
foreach(ByteCode byteCode in body) {
int argIdx = 0;
int popCount = byteCode.PopCount ?? byteCode.StackBefore.Length;
Expand Down

0 comments on commit eee2794

Please sign in to comment.