Skip to content

Commit d3a9b15

Browse files
craigfowlerGithub Actions Workflow (bot)
authored andcommitted
Publish updated documentation website
1 parent c801103 commit d3a9b15

9 files changed

Lines changed: 384 additions & 27 deletions

docs/api/CSF.Screenplay.Selenium.NamedUri.html

Lines changed: 65 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,13 @@ <h1 id="CSF_Screenplay_Selenium_NamedUri" data-uid="CSF.Screenplay.Selenium.Name
147147
</div>
148148
</dd></dl>
149149

150+
<dl class="typelist extensionMethods">
151+
<dt>Extension Methods</dt>
152+
<dd>
153+
<div>
154+
<a class="xref" href="CSF.Screenplay.Selenium.NamedUriExtensions.html#CSF_Screenplay_Selenium_NamedUriExtensions_RebaseTo_CSF_Screenplay_Selenium_NamedUri_System_String_">NamedUriExtensions.RebaseTo(NamedUri, string)</a>
155+
</div>
156+
</dd></dl>
150157

151158

152159

@@ -170,7 +177,7 @@ <h2 class="section" id="constructors">Constructors
170177

171178
<h3 id="CSF_Screenplay_Selenium_NamedUri__ctor_System_String_System_String_" data-uid="CSF.Screenplay.Selenium.NamedUri.#ctor(System.String,System.String)">
172179
NamedUri(string, string)
173-
<a class="header-action link-secondary" title="View source" href="https://github.com/csf-dev/CSF.Screenplay/blob/master/CSF.Screenplay.Selenium/NamedUri.cs/#L46"><i class="bi bi-code-slash"></i></a>
180+
<a class="header-action link-secondary" title="View source" href="https://github.com/csf-dev/CSF.Screenplay/blob/master/CSF.Screenplay.Selenium/NamedUri.cs/#L72"><i class="bi bi-code-slash"></i></a>
174181
</h3>
175182

176183
<div class="markdown level1 summary"><p>Initializes a new instance of the <a class="xref" href="CSF.Screenplay.Selenium.NamedUri.html">NamedUri</a> class.</p>
@@ -206,7 +213,7 @@ <h4 class="section">Parameters</h4>
206213

207214
<h3 id="CSF_Screenplay_Selenium_NamedUri__ctor_System_Uri_System_String_" data-uid="CSF.Screenplay.Selenium.NamedUri.#ctor(System.Uri,System.String)">
208215
NamedUri(Uri, string)
209-
<a class="header-action link-secondary" title="View source" href="https://github.com/csf-dev/CSF.Screenplay/blob/master/CSF.Screenplay.Selenium/NamedUri.cs/#L35"><i class="bi bi-code-slash"></i></a>
216+
<a class="header-action link-secondary" title="View source" href="https://github.com/csf-dev/CSF.Screenplay/blob/master/CSF.Screenplay.Selenium/NamedUri.cs/#L61"><i class="bi bi-code-slash"></i></a>
210217
</h3>
211218

212219
<div class="markdown level1 summary"><p>Initializes a new instance of the <a class="xref" href="CSF.Screenplay.Selenium.NamedUri.html">NamedUri</a> class.</p>
@@ -306,6 +313,60 @@ <h4 class="section">Property Value</h4>
306313

307314

308315

316+
<h2 class="section" id="methods">Methods
317+
</h2>
318+
319+
320+
<a id="CSF_Screenplay_Selenium_NamedUri_RebaseTo_" data-uid="CSF.Screenplay.Selenium.NamedUri.RebaseTo*"></a>
321+
322+
<h3 id="CSF_Screenplay_Selenium_NamedUri_RebaseTo_System_Uri_" data-uid="CSF.Screenplay.Selenium.NamedUri.RebaseTo(System.Uri)">
323+
RebaseTo(Uri)
324+
<a class="header-action link-secondary" title="View source" href="https://github.com/csf-dev/CSF.Screenplay/blob/master/CSF.Screenplay.Selenium/NamedUri.cs/#L46"><i class="bi bi-code-slash"></i></a>
325+
</h3>
326+
327+
<div class="markdown level1 summary"><p>Gets a copy of the current named URI, except 'rebased' using the specified base URI.</p>
328+
</div>
329+
<div class="markdown level1 conceptual"></div>
330+
331+
<div class="codewrapper">
332+
<pre><code class="lang-csharp hljs">public NamedUri RebaseTo(Uri baseUri)</code></pre>
333+
</div>
334+
335+
<h4 class="section">Parameters</h4>
336+
<dl class="parameters">
337+
<dt><code>baseUri</code> <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.uri">Uri</a></dt>
338+
<dd><p>A new base URI</p>
339+
</dd>
340+
</dl>
341+
342+
<h4 class="section">Returns</h4>
343+
<dl class="parameters">
344+
<dt><a class="xref" href="CSF.Screenplay.Selenium.NamedUri.html">NamedUri</a></dt>
345+
<dd><p>A URI which might have been rebased onto the new base URI</p>
346+
</dd>
347+
</dl>
348+
349+
350+
351+
352+
353+
354+
355+
<h4 class="section" id="CSF_Screenplay_Selenium_NamedUri_RebaseTo_System_Uri__remarks">Remarks</h4>
356+
<div class="markdown level1 remarks"><p>
357+
If the current <a class="xref" href="CSF.Screenplay.Selenium.NamedUri.html#CSF_Screenplay_Selenium_NamedUri_Uri">Uri</a> is <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.urikind#system-urikind-absolute">Absolute</a> then this method has not effect and the named URI which is
358+
returned is the unmodified current instance.
359+
</p>
360+
<p>
361+
If the current Uri is not absolute, then the specified base URI is prepended to the current URI, serving as a base.
362+
The new URI is then returned from this method. Note that this method will never result in the current instance being
363+
mutated, at most it will only return a copy of the current instance, which has the newly-rebased URI.
364+
</p>
365+
</div>
366+
367+
368+
369+
309370
<h2 class="section" id="operators">Operators
310371
</h2>
311372

@@ -314,7 +375,7 @@ <h2 class="section" id="operators">Operators
314375

315376
<h3 id="CSF_Screenplay_Selenium_NamedUri_op_Implicit_System_String__CSF_Screenplay_Selenium_NamedUri" data-uid="CSF.Screenplay.Selenium.NamedUri.op_Implicit(System.String)~CSF.Screenplay.Selenium.NamedUri">
316377
implicit operator NamedUri(string)
317-
<a class="header-action link-secondary" title="View source" href="https://github.com/csf-dev/CSF.Screenplay/blob/master/CSF.Screenplay.Selenium/NamedUri.cs/#L66"><i class="bi bi-code-slash"></i></a>
378+
<a class="header-action link-secondary" title="View source" href="https://github.com/csf-dev/CSF.Screenplay/blob/master/CSF.Screenplay.Selenium/NamedUri.cs/#L92"><i class="bi bi-code-slash"></i></a>
318379
</h3>
319380

320381
<div class="markdown level1 summary"><p>Converts a <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a> to a <a class="xref" href="CSF.Screenplay.Selenium.NamedUri.html">NamedUri</a>.</p>
@@ -353,7 +414,7 @@ <h4 class="section">Returns</h4>
353414

354415
<h3 id="CSF_Screenplay_Selenium_NamedUri_op_Implicit_System_Uri__CSF_Screenplay_Selenium_NamedUri" data-uid="CSF.Screenplay.Selenium.NamedUri.op_Implicit(System.Uri)~CSF.Screenplay.Selenium.NamedUri">
355416
implicit operator NamedUri(Uri)
356-
<a class="header-action link-secondary" title="View source" href="https://github.com/csf-dev/CSF.Screenplay/blob/master/CSF.Screenplay.Selenium/NamedUri.cs/#L59"><i class="bi bi-code-slash"></i></a>
417+
<a class="header-action link-secondary" title="View source" href="https://github.com/csf-dev/CSF.Screenplay/blob/master/CSF.Screenplay.Selenium/NamedUri.cs/#L85"><i class="bi bi-code-slash"></i></a>
357418
</h3>
358419

359420
<div class="markdown level1 summary"><p>Converts a <a class="xref" href="CSF.Screenplay.Selenium.NamedUri.html#CSF_Screenplay_Selenium_NamedUri_Uri">Uri</a> to a <a class="xref" href="CSF.Screenplay.Selenium.NamedUri.html">NamedUri</a>.</p>
Lines changed: 234 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,234 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<title>Class NamedUriExtensions | Screenplay </title>
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<meta name="title" content="Class NamedUriExtensions | Screenplay ">
8+
9+
<meta name="description" content="Extension methods for .">
10+
<link rel="icon" href="../favicon.ico">
11+
<link rel="stylesheet" href="../public/docfx.min.css">
12+
<link rel="stylesheet" href="../public/main.css">
13+
<meta name="docfx:navrel" content="../toc.html">
14+
<meta name="docfx:tocrel" content="toc.html">
15+
16+
<meta name="docfx:rel" content="../">
17+
18+
19+
<meta name="docfx:docurl" content="https://github.com/csf-dev/CSF.Screenplay/new/master/apiSpec/new?filename=CSF_Screenplay_Selenium_NamedUriExtensions.md&amp;value=---%0Auid%3A%20CSF.Screenplay.Selenium.NamedUriExtensions%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">
20+
<meta name="loc:inThisArticle" content="In this article">
21+
<meta name="loc:searchResultsCount" content="{count} results for &quot;{query}&quot;">
22+
<meta name="loc:searchNoResults" content="No results for &quot;{query}&quot;">
23+
<meta name="loc:tocFilter" content="Filter by title">
24+
<meta name="loc:nextArticle" content="Next">
25+
<meta name="loc:prevArticle" content="Previous">
26+
<meta name="loc:themeLight" content="Light">
27+
<meta name="loc:themeDark" content="Dark">
28+
<meta name="loc:themeAuto" content="Auto">
29+
<meta name="loc:changeTheme" content="Change theme">
30+
<meta name="loc:copy" content="Copy">
31+
<meta name="loc:downloadPdf" content="Download PDF">
32+
33+
<script type="module" src="./../public/docfx.min.js"></script>
34+
35+
<script>
36+
const theme = localStorage.getItem('theme') || 'auto'
37+
document.documentElement.setAttribute('data-bs-theme', theme === 'auto' ? (window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light') : theme)
38+
</script>
39+
40+
</head>
41+
42+
<body class="tex2jax_ignore" data-layout="" data-yaml-mime="ManagedReference">
43+
<header class="bg-body border-bottom">
44+
<nav id="autocollapse" class="navbar navbar-expand-md" role="navigation">
45+
<div class="container-xxl flex-nowrap">
46+
<a class="navbar-brand" href="../index.html">
47+
<img id="logo" class="svg" src="../logo.svg" alt="CSF.Screenplay">
48+
CSF.Screenplay
49+
</a>
50+
<button class="btn btn-lg d-md-none border-0" type="button" data-bs-toggle="collapse" data-bs-target="#navpanel" aria-controls="navpanel" aria-expanded="false" aria-label="Toggle navigation">
51+
<i class="bi bi-three-dots"></i>
52+
</button>
53+
<div class="collapse navbar-collapse" id="navpanel">
54+
<div id="navbar">
55+
<form class="search" role="search" id="search">
56+
<i class="bi bi-search"></i>
57+
<input class="form-control" id="search-query" type="search" disabled placeholder="Search" autocomplete="off" aria-label="Search">
58+
</form>
59+
</div>
60+
</div>
61+
</div>
62+
</nav>
63+
</header>
64+
65+
<main class="container-xxl">
66+
<div class="toc-offcanvas">
67+
<div class="offcanvas-md offcanvas-start" tabindex="-1" id="tocOffcanvas" aria-labelledby="tocOffcanvasLabel">
68+
<div class="offcanvas-header">
69+
<h5 class="offcanvas-title" id="tocOffcanvasLabel">Table of Contents</h5>
70+
<button type="button" class="btn-close" data-bs-dismiss="offcanvas" data-bs-target="#tocOffcanvas" aria-label="Close"></button>
71+
</div>
72+
<div class="offcanvas-body">
73+
<nav class="toc" id="toc"></nav>
74+
</div>
75+
</div>
76+
</div>
77+
78+
<div class="content">
79+
<div class="actionbar">
80+
<button class="btn btn-lg border-0 d-md-none" type="button" data-bs-toggle="offcanvas" data-bs-target="#tocOffcanvas" aria-controls="tocOffcanvas" aria-expanded="false" aria-label="Show table of contents">
81+
<i class="bi bi-list"></i>
82+
</button>
83+
84+
<nav id="breadcrumb"></nav>
85+
</div>
86+
87+
<article data-uid="CSF.Screenplay.Selenium.NamedUriExtensions">
88+
89+
90+
91+
<h1 id="CSF_Screenplay_Selenium_NamedUriExtensions" data-uid="CSF.Screenplay.Selenium.NamedUriExtensions" class="text-break">
92+
Class NamedUriExtensions <a class="header-action link-secondary" title="View source" href="https://github.com/csf-dev/CSF.Screenplay/blob/master/CSF.Screenplay.Selenium/NamedUriExtensions.cs/#L9"><i class="bi bi-code-slash"></i></a>
93+
</h1>
94+
95+
<div class="facts text-secondary">
96+
<dl><dt>Namespace</dt><dd><a class="xref" href="CSF.html">CSF</a>.<a class="xref" href="CSF.Screenplay.html">Screenplay</a>.<a class="xref" href="CSF.Screenplay.Selenium.html">Selenium</a></dd></dl>
97+
<dl><dt>Assembly</dt><dd>CSF.Screenplay.Selenium.dll</dd></dl>
98+
</div>
99+
100+
<div class="markdown summary"><p>Extension methods for <a class="xref" href="CSF.Screenplay.Selenium.NamedUri.html">NamedUri</a>.</p>
101+
</div>
102+
<div class="markdown conceptual"></div>
103+
104+
<div class="codewrapper">
105+
<pre><code class="lang-csharp hljs">public static class NamedUriExtensions</code></pre>
106+
</div>
107+
108+
109+
110+
111+
<dl class="typelist inheritance">
112+
<dt>Inheritance</dt>
113+
<dd>
114+
<div><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object">object</a></div>
115+
<div><span class="xref">NamedUriExtensions</span></div>
116+
</dd>
117+
</dl>
118+
119+
120+
121+
<dl class="typelist inheritedMembers">
122+
<dt>Inherited Members</dt>
123+
<dd>
124+
<div>
125+
<a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)">object.Equals(object)</a>
126+
</div>
127+
<div>
128+
<a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)">object.Equals(object, object)</a>
129+
</div>
130+
<div>
131+
<a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object.gethashcode">object.GetHashCode()</a>
132+
</div>
133+
<div>
134+
<a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object.gettype">object.GetType()</a>
135+
</div>
136+
<div>
137+
<a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone">object.MemberwiseClone()</a>
138+
</div>
139+
<div>
140+
<a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object.referenceequals">object.ReferenceEquals(object, object)</a>
141+
</div>
142+
<div>
143+
<a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object.tostring">object.ToString()</a>
144+
</div>
145+
</dd></dl>
146+
147+
148+
149+
150+
151+
152+
<h2 class="section" id="methods">Methods
153+
</h2>
154+
155+
156+
<a id="CSF_Screenplay_Selenium_NamedUriExtensions_RebaseTo_" data-uid="CSF.Screenplay.Selenium.NamedUriExtensions.RebaseTo*"></a>
157+
158+
<h3 id="CSF_Screenplay_Selenium_NamedUriExtensions_RebaseTo_CSF_Screenplay_Selenium_NamedUri_System_String_" data-uid="CSF.Screenplay.Selenium.NamedUriExtensions.RebaseTo(CSF.Screenplay.Selenium.NamedUri,System.String)">
159+
RebaseTo(NamedUri, string)
160+
<a class="header-action link-secondary" title="View source" href="https://github.com/csf-dev/CSF.Screenplay/blob/master/CSF.Screenplay.Selenium/NamedUriExtensions.cs/#L28"><i class="bi bi-code-slash"></i></a>
161+
</h3>
162+
163+
<div class="markdown level1 summary"><p>Gets a copy of the current named URI, except 'rebased' using the specified base URI.</p>
164+
</div>
165+
<div class="markdown level1 conceptual"></div>
166+
167+
<div class="codewrapper">
168+
<pre><code class="lang-csharp hljs">public static NamedUri RebaseTo(this NamedUri namedUri, string baseUri)</code></pre>
169+
</div>
170+
171+
<h4 class="section">Parameters</h4>
172+
<dl class="parameters">
173+
<dt><code>namedUri</code> <a class="xref" href="CSF.Screenplay.Selenium.NamedUri.html">NamedUri</a></dt>
174+
<dd><p>The named URI to rebase</p>
175+
</dd>
176+
<dt><code>baseUri</code> <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></dt>
177+
<dd><p>A new base URI</p>
178+
</dd>
179+
</dl>
180+
181+
<h4 class="section">Returns</h4>
182+
<dl class="parameters">
183+
<dt><a class="xref" href="CSF.Screenplay.Selenium.NamedUri.html">NamedUri</a></dt>
184+
<dd><p>A URI which might have been rebased onto the new base URI</p>
185+
</dd>
186+
</dl>
187+
188+
189+
190+
191+
192+
193+
194+
<h4 class="section" id="CSF_Screenplay_Selenium_NamedUriExtensions_RebaseTo_CSF_Screenplay_Selenium_NamedUri_System_String__remarks">Remarks</h4>
195+
<div class="markdown level1 remarks"><p>
196+
If the current <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.uri">Uri</a> is <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.urikind#system-urikind-absolute">Absolute</a> then this method has not effect and the named URI which is
197+
returned is the unmodified current instance.
198+
</p>
199+
<p>
200+
If the current Uri is not absolute, then the specified base URI is prepended to the current URI, serving as a base.
201+
The new URI is then returned from this method. Note that this method will never result in the current instance being
202+
mutated, at most it will only return a copy of the current instance, which has the newly-rebased URI.
203+
</p>
204+
</div>
205+
206+
207+
208+
209+
210+
</article>
211+
212+
<div class="contribution d-print-none">
213+
<a href="https://github.com/csf-dev/CSF.Screenplay/blob/master/CSF.Screenplay.Selenium/NamedUriExtensions.cs/#L9" class="edit-link">Edit this page</a>
214+
</div>
215+
216+
217+
</div>
218+
219+
<div class="affix">
220+
<nav id="affix"></nav>
221+
</div>
222+
</main>
223+
224+
<div class="container-xxl search-results" id="search-results"></div>
225+
226+
<footer class="border-top text-secondary">
227+
<div class="container-xxl">
228+
<div class="flex-fill">
229+
<span>Made with <a href="https://dotnet.github.io/docfx">docfx</a></span>
230+
</div>
231+
</div>
232+
</footer>
233+
</body>
234+
</html>

docs/api/CSF.Screenplay.Selenium.Tasks.OpenUrlRespectingBase.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ <h2 class="section" id="constructors">Constructors
172172

173173
<h3 id="CSF_Screenplay_Selenium_Tasks_OpenUrlRespectingBase__ctor_CSF_Screenplay_Selenium_NamedUri_" data-uid="CSF.Screenplay.Selenium.Tasks.OpenUrlRespectingBase.#ctor(CSF.Screenplay.Selenium.NamedUri)">
174174
OpenUrlRespectingBase(NamedUri)
175-
<a class="header-action link-secondary" title="View source" href="https://github.com/csf-dev/CSF.Screenplay/blob/master/CSF.Screenplay.Selenium/Tasks/OpenUrlRespectingBase.cs/#L44"><i class="bi bi-code-slash"></i></a>
175+
<a class="header-action link-secondary" title="View source" href="https://github.com/csf-dev/CSF.Screenplay/blob/master/CSF.Screenplay.Selenium/Tasks/OpenUrlRespectingBase.cs/#L41"><i class="bi bi-code-slash"></i></a>
176176
</h3>
177177

178178
<div class="markdown level1 summary"><p>Initializes a new instance of the <a class="xref" href="CSF.Screenplay.Selenium.Tasks.OpenUrlRespectingBase.html">OpenUrlRespectingBase</a> class with the specified URL.</p>
@@ -209,7 +209,7 @@ <h2 class="section" id="methods">Methods
209209

210210
<h3 id="CSF_Screenplay_Selenium_Tasks_OpenUrlRespectingBase_GetReportFragment_CSF_Screenplay_Actor_CSF_Screenplay_IFormatsReportFragment_" data-uid="CSF.Screenplay.Selenium.Tasks.OpenUrlRespectingBase.GetReportFragment(CSF.Screenplay.Actor,CSF.Screenplay.IFormatsReportFragment)">
211211
GetReportFragment(Actor, IFormatsReportFragment)
212-
<a class="header-action link-secondary" title="View source" href="https://github.com/csf-dev/CSF.Screenplay/blob/master/CSF.Screenplay.Selenium/Tasks/OpenUrlRespectingBase.cs/#L37"><i class="bi bi-code-slash"></i></a>
212+
<a class="header-action link-secondary" title="View source" href="https://github.com/csf-dev/CSF.Screenplay/blob/master/CSF.Screenplay.Selenium/Tasks/OpenUrlRespectingBase.cs/#L34"><i class="bi bi-code-slash"></i></a>
213213
</h3>
214214

215215
<div class="markdown level1 summary"><p>Gets a fragment of a Screenplay report, specific to the execution (performables) or gaining

docs/api/CSF.Screenplay.Selenium.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -192,6 +192,11 @@ <h3 id="classes">
192192
<dl class="jumplist">
193193
<dt><a class="xref" href="CSF.Screenplay.Selenium.NamedUri.html">NamedUri</a></dt>
194194
<dd><p>Model containing a <a class="xref" href="CSF.Screenplay.Selenium.NamedUri.html#CSF_Screenplay_Selenium_NamedUri_Uri">Uri</a> with a corresponding human-readable name.</p>
195+
</dd>
196+
</dl>
197+
<dl class="jumplist">
198+
<dt><a class="xref" href="CSF.Screenplay.Selenium.NamedUriExtensions.html">NamedUriExtensions</a></dt>
199+
<dd><p>Extension methods for <a class="xref" href="CSF.Screenplay.Selenium.NamedUri.html">NamedUri</a>.</p>
195200
</dd>
196201
</dl>
197202
<dl class="jumplist">

docs/api/toc.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -505,6 +505,9 @@
505505
<li>
506506
<a href="CSF.Screenplay.Selenium.NamedUri.html" name="" title="NamedUri">NamedUri</a>
507507
</li>
508+
<li>
509+
<a href="CSF.Screenplay.Selenium.NamedUriExtensions.html" name="" title="NamedUriExtensions">NamedUriExtensions</a>
510+
</li>
508511
<li>
509512
<a href="CSF.Screenplay.Selenium.PerformableBuilder.html" name="" title="PerformableBuilder">PerformableBuilder</a>
510513
</li>

docs/api/toc.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)