Skip to content

Commit 6f1023d

Browse files
committed
test: test message
1 parent a91a6d0 commit 6f1023d

File tree

1 file changed

+8
-6
lines changed
  • src/Packages/Passport/Runtime/Scripts/Public

1 file changed

+8
-6
lines changed

src/Packages/Passport/Runtime/Scripts/Public/Passport.cs

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@
2222
using UnityEditor;
2323
#endif
2424

25+
// this is a test...
26+
2527
namespace Immutable.Passport
2628
{
2729

@@ -53,7 +55,7 @@ public class Passport
5355
/// Gets or sets the log level for the SDK.
5456
/// </summary>
5557
/// <remarks>
56-
/// The log level determines which messages are recorded based on their severity.
58+
/// The log level determines which messages are recorded based on their severity.
5759
/// <para>
5860
/// The default value is <see cref="LogLevel.Info"/>.
5961
/// </para>
@@ -132,7 +134,7 @@ private Passport()
132134
}
133135

134136
/// <summary>
135-
/// Initialises Passport with the specified parameters.
137+
/// Initialises Passport with the specified parameters.
136138
/// This sets up the Passport instance, configures the web browser, and waits for the ready signal.
137139
/// </summary>
138140
/// <param name="clientId">The client ID</param>
@@ -226,7 +228,7 @@ private async UniTask Initialise(
226228
else
227229
{
228230
#if IMMUTABLE_CUSTOM_BROWSER
229-
throw new PassportException("When 'IMMUTABLE_CUSTOM_BROWSER' is defined in Scripting Define Symbols, " +
231+
throw new PassportException("When 'IMMUTABLE_CUSTOM_BROWSER' is defined in Scripting Define Symbols, " +
230232
" 'windowsWebBrowserClient' must not be null.");
231233
#else
232234
_webBrowserClient = gameObject.AddComponent<UwbWebView>();
@@ -408,7 +410,7 @@ public async UniTask<bool> IsRegisteredOffchain()
408410
}
409411

410412
/// <summary>
411-
/// Gets the list of external wallets the user has linked to their Passport account via the
413+
/// Gets the list of external wallets the user has linked to their Passport account via the
412414
/// <see href="https://passport.immutable.com/">Dashboard</see>.
413415
/// <returns>
414416
/// Linked addresses
@@ -533,7 +535,7 @@ public void ClearCache(bool includeDiskFiles)
533535
}
534536

535537
/// <summary>
536-
/// Clears all the underlying WebView storage currently being used by the JavaScript storage APIs.
538+
/// Clears all the underlying WebView storage currently being used by the JavaScript storage APIs.
537539
/// This includes Web SQL Database and the HTML5 Web Storage APIs.
538540
/// </summary>
539541
/// <returns></returns>
@@ -664,7 +666,7 @@ private void DisposeAll()
664666
}
665667
#endif
666668

667-
// Unsubscribe from Passport authentication events
669+
// Unsubscribe from Passport authentication events
668670
// and dispose of the Passport implementation
669671
if (_passportImpl != null)
670672
{

0 commit comments

Comments
 (0)