Fix a few for Example2

This commit is contained in:
sta
2014-03-31 17:10:45 +09:00
parent 3a31cd9501
commit b4eb9ead87
3 changed files with 6 additions and 5 deletions

View File

@@ -10,8 +10,8 @@ namespace Example2
{
var name = Context.QueryString ["name"];
var msg = !name.IsNullOrEmpty ()
? String.Format ("'{0}' to {1}", e.Data, name)
: e.Data;
? String.Format ("'{0}' to {1}", e.Data, name)
: e.Data;
Send (msg);
}