Skip to content

Commit 6ade9ba

Browse files
committed
text change
1 parent 87ca1ce commit 6ade9ba

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

TextApp/ClientApp/src/app/home/home.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<h1>Simple synchronized text editor using .NET Core SingalR </h1>
1+
<h1>Simple collaborative text editor using .NET Core SingalR </h1>
22
<p>Welcome to your new single-page application, built to demonstrate how SignalR works:</p>
33
<h4>Instructions:</h4>
44
<p>Enter the same URL you see here in address bar in a new browser session and see that the text you enter below will reflect in the other browser real-time. </p>

TextApp/TextHub.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ namespace TextApp
99
public class TextHub:Hub
1010
{
1111
public void Text(string message)
12-
{
12+
{
1313
//The method mentioned here will be the method on the client that SingalR looks for to talk to
1414
Clients.All.SendAsync("Send", message);
1515
}

0 commit comments

Comments
 (0)