diff options
author | chris@chriszimmerman.net <cjay.zimmerman@gmail.com> | 2015-10-17 19:50:09 -0400 |
---|---|---|
committer | chris@chriszimmerman.net <cjay.zimmerman@gmail.com> | 2015-10-17 19:50:09 -0400 |
commit | 9f510f3044138429ce616c390e42d8e0b6ceb2df (patch) | |
tree | 6be6157f6f8d951fc34ed1c4629dbfe392d1fc6b | |
parent | 65f951d87c80deff6c447faa4690dcfe1bb4d36a (diff) |
Fixed indentation in csharp file.
-rw-r--r-- | csharp.html.markdown | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/csharp.html.markdown b/csharp.html.markdown index 59f3e42b..31c0417e 100644 --- a/csharp.html.markdown +++ b/csharp.html.markdown @@ -395,8 +395,8 @@ on a new line! ""Wow!"", the masses cried"; ref int maxCount, // Pass by reference out int count) { - //the argument passed in as 'count' will hold the value of 15 outside of this function - count = 15; // out param must be assigned before control leaves the method + //the argument passed in as 'count' will hold the value of 15 outside of this function + count = 15; // out param must be assigned before control leaves the method } // GENERICS |