summaryrefslogtreecommitdiff
path: root/tutorial/netstd/Server/Program.cs
diff options
context:
space:
mode:
Diffstat (limited to 'tutorial/netstd/Server/Program.cs')
-rw-r--r--tutorial/netstd/Server/Program.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tutorial/netstd/Server/Program.cs b/tutorial/netstd/Server/Program.cs
index d9c9dbf12..29b21d073 100644
--- a/tutorial/netstd/Server/Program.cs
+++ b/tutorial/netstd/Server/Program.cs
@@ -131,7 +131,7 @@ Sample:
if (selectedTransport == Transport.Http)
{
if (multiplex)
- throw new Exception("This tutorial semple code does not yet allow multiplex over http (although Thrift itself of course does)");
+ throw new Exception("This tutorial sample code does not yet allow multiplex over http (although Thrift itself of course does)");
new HttpServerSample().Run(cancellationToken);
}
else