Skip to content

Commit

Permalink
Apply automatic changes
Browse files Browse the repository at this point in the history
  • Loading branch information
WebFreak001 authored and github-actions[bot] committed Oct 25, 2023
1 parent 71c6611 commit 1f73a73
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 16 deletions.
2 changes: 1 addition & 1 deletion file_hashes.json

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions std/experimental/lexer/TokenStructure.column.html
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,9 @@
</nav>
<div id="main-contents">
<div>
<h1>Variable TokenStructure.column</h1><p>The column number at which this token occurs. This is measured in bytes
and may not be correct when tab characters are involved.
<h1>Variable TokenStructure.column</h1><p>1-based column number at which the start of this token occurs.
This is measured in bytes and may not be correct when tab characters
are involved.
</p>
<div class="prototype">
<code class="lang-d">
Expand Down
14 changes: 8 additions & 6 deletions std/experimental/lexer/TokenStructure.html
Original file line number Diff line number Diff line change
Expand Up @@ -153,30 +153,32 @@ <h1>Struct TokenStructure</h1><p>The token that is returned by the lexer.
<td>
<a href="../../../std/experimental/lexer/TokenStructure.column.html" class="public"><code>column</code></a>
</td>
<td class="typecol"><code class="prettyprint lang-d"><span class="pln">size_t</span></code></td><td>The column number at which this token occurs. This is measured in bytes
and may not be correct when tab characters are involved.
<td class="typecol"><code class="prettyprint lang-d"><span class="pln">size_t</span></code></td><td>1-based column number at which the start of this token occurs.
This is measured in bytes and may not be correct when tab characters
are involved.
</td>
</tr>
<tr>
<td>
<a href="../../../std/experimental/lexer/TokenStructure.index.html" class="public"><code>index</code></a>
</td>
<td class="typecol"><code class="prettyprint lang-d"><span class="pln">size_t</span></code></td><td>The byte offset from the beginning of the input at which this token
occurs.
<td class="typecol"><code class="prettyprint lang-d"><span class="pln">size_t</span></code></td><td>0-based byte offset from the beginning of the input at which the start
of this token occurs.
</td>
</tr>
<tr>
<td>
<a href="../../../std/experimental/lexer/TokenStructure.line.html" class="public"><code>line</code></a>
</td>
<td class="typecol"><code class="prettyprint lang-d"><span class="pln">size_t</span></code></td><td>The line number at which this token occurs.
<td class="typecol"><code class="prettyprint lang-d"><span class="pln">size_t</span></code></td><td>1-based line number at which the start of this token occurs.
</td>
</tr>
<tr>
<td>
<a href="../../../std/experimental/lexer/TokenStructure.text.html" class="public"><code>text</code></a>
</td>
<td class="typecol"><code class="prettyprint lang-d"><span class="typ">string</span></code></td><td>The text of the token.
<td class="typecol"><code class="prettyprint lang-d"><span class="typ">string</span></code></td><td>The text of the token for dynamic tokens. May be <code class="lang-d"><span class="kwd">null</span></code>, e.g. for
static tokens.
</td>
</tr>
<tr>
Expand Down
4 changes: 2 additions & 2 deletions std/experimental/lexer/TokenStructure.index.html
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,8 @@
</nav>
<div id="main-contents">
<div>
<h1>Variable TokenStructure.index</h1><p>The byte offset from the beginning of the input at which this token
occurs.
<h1>Variable TokenStructure.index</h1><p>0-based byte offset from the beginning of the input at which the start
of this token occurs.
</p>
<div class="prototype">
<code class="lang-d">
Expand Down
2 changes: 1 addition & 1 deletion std/experimental/lexer/TokenStructure.line.html
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
</nav>
<div id="main-contents">
<div>
<h1>Variable TokenStructure.line</h1><p>The line number at which this token occurs.
<h1>Variable TokenStructure.line</h1><p>1-based line number at which the start of this token occurs.
</p>
<div class="prototype">
<code class="lang-d">
Expand Down
3 changes: 2 additions & 1 deletion std/experimental/lexer/TokenStructure.text.html
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,8 @@
</nav>
<div id="main-contents">
<div>
<h1>Variable TokenStructure.text</h1><p>The text of the token.
<h1>Variable TokenStructure.text</h1><p>The text of the token for dynamic tokens. May be <code class="lang-d"><span class="kwd">null</span></code>, e.g. for
static tokens.
</p>
<div class="prototype">
<code class="lang-d">
Expand Down
6 changes: 3 additions & 3 deletions std/experimental/lexer/TokenStructure.this.html
Original file line number Diff line number Diff line change
Expand Up @@ -165,10 +165,10 @@ <h2 id="1">Function TokenStructure.this</h2><p>Constructs a token.
<table><col class="caption"><tr><th>Name</th><th>Description</th></tr>
<tr><td id="type">type</td><td> the token type</td></tr>
<tr><td id="text">text</td><td> the text of the token, which may be null</td></tr>
<tr><td id="line">line</td><td> the line number at which this token occurs</td></tr>
<tr><td id="column">column</td><td> the column number at which this token occurs</td></tr>
<tr><td id="line">line</td><td> the line number at which this token occurs, 1-based</td></tr>
<tr><td id="column">column</td><td> the column number at which this token occurs, 1-based</td></tr>
<tr><td id="index">index</td><td> the byte offset from the beginning of the input at which this
token occurs</td></tr>
token occurs, 0-based</td></tr>
</table>
</section>

Expand Down

0 comments on commit 1f73a73

Please sign in to comment.