|
22 | 22 | using UnityEditor; |
23 | 23 | #endif |
24 | 24 |
|
| 25 | +// this is a test... |
| 26 | + |
25 | 27 | namespace Immutable.Passport |
26 | 28 | { |
27 | 29 |
|
@@ -53,7 +55,7 @@ public class Passport |
53 | 55 | /// Gets or sets the log level for the SDK. |
54 | 56 | /// </summary> |
55 | 57 | /// <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. |
57 | 59 | /// <para> |
58 | 60 | /// The default value is <see cref="LogLevel.Info"/>. |
59 | 61 | /// </para> |
@@ -132,7 +134,7 @@ private Passport() |
132 | 134 | } |
133 | 135 |
|
134 | 136 | /// <summary> |
135 | | - /// Initialises Passport with the specified parameters. |
| 137 | + /// Initialises Passport with the specified parameters. |
136 | 138 | /// This sets up the Passport instance, configures the web browser, and waits for the ready signal. |
137 | 139 | /// </summary> |
138 | 140 | /// <param name="clientId">The client ID</param> |
@@ -226,7 +228,7 @@ private async UniTask Initialise( |
226 | 228 | else |
227 | 229 | { |
228 | 230 | #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, " + |
230 | 232 | " 'windowsWebBrowserClient' must not be null."); |
231 | 233 | #else |
232 | 234 | _webBrowserClient = gameObject.AddComponent<UwbWebView>(); |
@@ -408,7 +410,7 @@ public async UniTask<bool> IsRegisteredOffchain() |
408 | 410 | } |
409 | 411 |
|
410 | 412 | /// <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 |
412 | 414 | /// <see href="https://passport.immutable.com/">Dashboard</see>. |
413 | 415 | /// <returns> |
414 | 416 | /// Linked addresses |
@@ -533,7 +535,7 @@ public void ClearCache(bool includeDiskFiles) |
533 | 535 | } |
534 | 536 |
|
535 | 537 | /// <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. |
537 | 539 | /// This includes Web SQL Database and the HTML5 Web Storage APIs. |
538 | 540 | /// </summary> |
539 | 541 | /// <returns></returns> |
@@ -664,7 +666,7 @@ private void DisposeAll() |
664 | 666 | } |
665 | 667 | #endif |
666 | 668 |
|
667 | | - // Unsubscribe from Passport authentication events |
| 669 | + // Unsubscribe from Passport authentication events |
668 | 670 | // and dispose of the Passport implementation |
669 | 671 | if (_passportImpl != null) |
670 | 672 | { |
|
0 commit comments