summaryrefslogtreecommitdiffhomepage
path: root/csharp.html.markdown
diff options
context:
space:
mode:
authorchris@chriszimmerman.net <cjay.zimmerman@gmail.com>2015-10-15 20:39:37 -0400
committerchris@chriszimmerman.net <cjay.zimmerman@gmail.com>2015-10-15 20:39:37 -0400
commit6a173cb28d6b2565e63fd3e0c05e6627043ba48b (patch)
treeab6284b9cfc0bd88e7d953ab751f56b06d217b35 /csharp.html.markdown
parent4e0db77a0c3cc4483b3b5f4f81d306869eef656a (diff)
Fixed spacing.
Diffstat (limited to 'csharp.html.markdown')
-rw-r--r--csharp.html.markdown4
1 files changed, 2 insertions, 2 deletions
diff --git a/csharp.html.markdown b/csharp.html.markdown
index c32fb9f3..26d4dffc 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