diff options
author | olwaro <hoarau.olivier@gmail.com> | 2014-02-17 10:43:18 +0100 |
---|---|---|
committer | olwaro <hoarau.olivier@gmail.com> | 2014-02-17 10:43:18 +0100 |
commit | f6032ba1906f51a59ecc17d24864a6f56d100c14 (patch) | |
tree | fc54760fbe2bb9f82de31d2d203e81c66a73f472 | |
parent | 8b62c313b1e95428adb363425d35456e726e2d7f (diff) |
Fixes typos
-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 e240bf86..12bdf168 100644 --- a/csharp.html.markdown +++ b/csharp.html.markdown @@ -435,14 +435,14 @@ on a new line! ""Wow!"", the masses cried"; Func<int, int> square = (x) => x * x; // Last T item is the return value Console.WriteLine(square(3)); // 9 - // DISPOSABLE RESSOURCES MANAGEMENT - let you handle unmanaged resources easily + // DISPOSABLE RESSOURCES MANAGEMENT - let you handle unmanaged resources easily. // Most of objects that access unmanaged resources (file handle, device contexts, etc.) // implement the IDisposable interface. The using statement takes care of // cleaning those IDisposable objects for you. using (StreamWriter writer = new StreamWriter("log.txt")) { writer.WriteLine("Nothing suspicious here"); - // At the end of scope, ressources will be released. + // At the end of scope, resources will be released. // Even if an exception is thrown. } |