Skip to content

Commit ad10695

Browse files
committed
Fixes a few comment issues
1 parent 115a357 commit ad10695

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

NetworkTablesCore/NetworkTable.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,9 @@ public class NetworkTable : ITable, IRemote
8181
/// <summary>The default port NetworkTables listens on.</summary>
8282
public const uint DefaultPort = 1735;
8383

84+
/// <summary>
85+
/// The default file name used for Persistent Storage.
86+
/// </summary>
8487
public const string DefaultPersistentFileName = "networktables.ini";
8588
internal static uint Port { get; private set; } = DefaultPort;
8689
internal static string IPAddress { get; private set; } = "";
@@ -137,15 +140,12 @@ public static void Shutdown()
137140
}
138141

139142
/// <summary>
140-
/// Sets NetworkTables to be a client
143+
/// Sets NetworkTables to be a client.
141144
/// </summary>
142145
/// <exception cref="InvalidOperationException">This is thrown if Network Tables
143146
/// has already been initialized.</exception>
144-
/// /// <summary>
145-
/// Sets that network tables should be in client mode.
146-
/// </summary>
147147
/// <remarks>This or <see cref="SetServerMode"/> must be called
148-
/// before <see cref="Initialize"/> or <see cref="GetTable(string)"/></remarks>
148+
/// before <see cref="Initialize"/> or <see cref="GetTable(string)"/>.</remarks>
149149
public static void SetClientMode()
150150
{
151151
if (Client)

0 commit comments

Comments
 (0)