Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix some code errors in demo doc #231

Merged
merged 1 commit into from Oct 17, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/DemoApps/FriendsGraph.md
Expand Up @@ -137,7 +137,7 @@ _FriendsCell_ project. Now we can make the six guys _friends_ in our
program.

```C#
Friendship friend_ship = new Friendship();
Friendship friend_ship = new Friendship(new List<long>());
friend_ship.friends.Add(Rachel.CellID);
friend_ship.friends.Add(Monica.CellID);
friend_ship.friends.Add(Phoebe.CellID);
Expand Down
2 changes: 1 addition & 1 deletion doc/DemoApps/Ping.md
Expand Up @@ -112,7 +112,7 @@ namespace TestTrinity
var my_server = new MyServer();
my_server.Start(false);
var synReq = new MyMessageWriter(1);
Global.CloudStorage.SynPingToServer(0, synReq);
Global.CloudStorage.SynPingToMyServer(0, synReq);
Console.WriteLine();
Console.ReadKey();
}
Expand Down