summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormatthewsotoudeh <matthewsot@outlook.com>2014-11-28 00:11:39 -0800
committermatthewsotoudeh <matthewsot@outlook.com>2014-11-28 00:11:39 -0800
commitdcd2920b30b7ec77c86a7f26af65b80b7f4a631d (patch)
tree757222d5b618f2eed272e7239884fdfe06e48fef
parent5d02db6604e9ec4b01c73bd67274dff470464dfe (diff)
commented up MiscellaneousSyntaxParser
-rw-r--r--SharpSwift/SharpSwift/Converters/MiscellaneousSyntaxParser.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/SharpSwift/SharpSwift/Converters/MiscellaneousSyntaxParser.cs b/SharpSwift/SharpSwift/Converters/MiscellaneousSyntaxParser.cs
index df99e8f..19e501e 100644
--- a/SharpSwift/SharpSwift/Converters/MiscellaneousSyntaxParser.cs
+++ b/SharpSwift/SharpSwift/Converters/MiscellaneousSyntaxParser.cs
@@ -7,7 +7,8 @@ namespace SharpSwift.Converters
/// <summary>
/// Adds a semicolon to the end of a line if there is one
/// </summary>
- /// <param name="semicolonToken"></param>
+ /// <param name="semicolonToken">The semicolon</param>
+ /// <returns>The semicolon and newline</returns>
private static string Semicolon(SyntaxToken semicolonToken)
{
return semicolonToken.Text == ";" ? ";" + NewLine : "";
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback