Skip to content

Commit 53df07a

Browse files
committed
remove optional tag from output
1 parent 67b35ae commit 53df07a

File tree

1 file changed

+27
-27
lines changed

1 file changed

+27
-27
lines changed

v0.3/handbook/libraries/stdlib.md

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -834,7 +834,7 @@ bind
834834
<td>
835835
<b>Output</b>
836836
<ul class="arglist">
837-
<li><strong>element</strong> - (optional) - the element that the mouse is entering or leaving</li>
837+
<li><strong>element</strong> - the element that the mouse is entering or leaving</li>
838838
</ul>
839839
</td>
840840
<td>
@@ -869,8 +869,8 @@ commit
869869
<td>
870870
<b>Output</b>
871871
<ul class="arglist">
872-
<li><strong>element</strong> - (optional) - the changed element</li>
873-
<li><strong>value</strong> - (optional) - the current value of a form element in the browser</li>
872+
<li><strong>element</strong> - the changed element</li>
873+
<li><strong>value</strong> - the current value of a form element in the browser</li>
874874
</ul>
875875
</td>
876876
<td>
@@ -898,13 +898,13 @@ bind
898898
<td>
899899
<b>Output</b>
900900
<ul class="arglist">
901-
<li><strong>element</strong> - (optional) - the element that was clicked; includes clicks on any children within the element</li>
902-
<li><strong>target</strong> - (optional) - the direct element that was clicked (the topmost target in the DOM tree)</li>
903-
<li><strong>page-x</strong> - (optional) - the x-coordinate of the mouse pointer relative to the page</li>
904-
<li><strong>page-y</strong> - (optional) - the y-coordinate of the mouse pointer relative to the page</li>
905-
<li><strong>window-x</strong> - (optional) - the x-coordinate of the mouse pointer relative to the window</li>
906-
<li><strong>window-y</strong> - (optional) - the y-coordinate of the mouse pointer relative to the page</li>
907-
<li><strong>button</strong> - (optional) - the mouse button that performed the click; options are:
901+
<li><strong>element</strong> - the element that was clicked; includes clicks on any children within the element</li>
902+
<li><strong>target</strong> - the direct element that was clicked (the topmost target in the DOM tree)</li>
903+
<li><strong>page-x</strong> - the x-coordinate of the mouse pointer relative to the page</li>
904+
<li><strong>page-y</strong> - the y-coordinate of the mouse pointer relative to the page</li>
905+
<li><strong>window-x</strong> - the x-coordinate of the mouse pointer relative to the window</li>
906+
<li><strong>window-y</strong> - the y-coordinate of the mouse pointer relative to the page</li>
907+
<li><strong>button</strong> - the mouse button that performed the click; options are:
908908
<ul class="arglist">
909909
<li>"left" - left mouse button; if no button argument is provided, this is the default</li>
910910
<li>"right" - right mouse button</li>
@@ -973,9 +973,9 @@ commit
973973
<td>
974974
<b>Output</b>
975975
<ul class="arglist">
976-
<li><strong>element</strong> - (optional) - the element which has focus during key-up or key-down</li>
977-
<li><strong>key-code</strong> - (optional) - the key code of the key that was pressed</li>
978-
<li><strong>key</strong> - (optional) - the key that was pressed; an alternative to key-code for a premade list of keys:
976+
<li><strong>element</strong> - the element which has focus during key-up or key-down</li>
977+
<li><strong>key-code</strong> - the key code of the key that was pressed</li>
978+
<li><strong>key</strong> - the key that was pressed; an alternative to key-code for a premade list of keys:
979979
<ul class="arglist">
980980
<li>"tab</li>
981981
<li>"enter"</li>
@@ -1025,8 +1025,8 @@ commit
10251025
<td>
10261026
<b>Output</b>
10271027
<ul class="arglist">
1028-
<li><strong>element</strong> - (optional) - the element that was focused or blurred</li>
1029-
<li><strong>value</strong> - (optional) - the value of the form element when it was focused or blurred</li>
1028+
<li><strong>element</strong> - the element that was focused or blurred</li>
1029+
<li><strong>value</strong> - the value of the form element when it was focused or blurred</li>
10301030
</ul>
10311031
</td>
10321032
<td>
@@ -1783,16 +1783,16 @@ The system library provides various system-level utilities for Eve.
17831783
</ul>
17841784
<b>Output</b>
17851785
<ul class="arglist">
1786-
<li><strong>year</strong> - (optional) - the current year</li>
1787-
<li><strong>month</strong> - (optional) - the current month (1 - 12)</li>
1788-
<li><strong>day</strong> - (optional) - the current day of the month (1 - 31)</li>
1789-
<li><strong>weekday</strong> - (optional) - the current day of the week (1 - 7, where 1 is Sunday)</li>
1790-
<li><strong>hour</strong> - (optional) - the current hour (0 - 23)</li>
1791-
<li><strong>minute</strong> - (optional) - the current minute (0 - 59)</li>
1792-
<li><strong>second</strong> - (optional) - the current second (0 - 59)</li>
1793-
<li><strong>millisecond</strong> - (optional) - the current millisecond (0 - 999)</li>
1794-
<li><strong>timestamp</strong> - (optional) - the current time represented as the number of milliseconds elapsed since 1 January 1970 00:00:00 UTC</li>
1795-
<li><strong>tick</strong> - (optional) - the number of ticks of the timer since it was created</li>
1786+
<li><strong>year</strong> - the current year</li>
1787+
<li><strong>month</strong> - the current month (1 - 12)</li>
1788+
<li><strong>day</strong> - the current day of the month (1 - 31)</li>
1789+
<li><strong>weekday</strong> - the current day of the week (1 - 7, where 1 is Sunday)</li>
1790+
<li><strong>hour</strong> - the current hour (0 - 23)</li>
1791+
<li><strong>minute</strong> - the current minute (0 - 59)</li>
1792+
<li><strong>second</strong> - the current second (0 - 59)</li>
1793+
<li><strong>millisecond</strong> - the current millisecond (0 - 999)</li>
1794+
<li><strong>timestamp</strong> - the current time represented as the number of milliseconds elapsed since 1 January 1970 00:00:00 UTC</li>
1795+
<li><strong>tick</strong> - the number of ticks of the timer since it was created</li>
17961796
</ul>
17971797
</td>
17981798
<td>
@@ -1836,7 +1836,7 @@ A library for accessing the filesystem. This library only works when Eve is run
18361836
<b>Output</b>
18371837
<ul class="arglist">
18381838
<li><strong>contents</strong> - The contents of the file. This attribute will have a value once the entire contents of the file are read.</li>
1839-
<li><strong>error</strong> - (optional) - If an error is encountered when attempting to read the file, it will be stored here as a #file/error.</li>
1839+
<li><strong>error</strong> - If an error is encountered when attempting to read the file, it will be stored here as a #file/error.</li>
18401840
</ul>
18411841
</td>
18421842
<td>
@@ -1876,7 +1876,7 @@ commit
18761876
<b>Output</b>
18771877
<ul class="arglist">
18781878
<li><strong>contents</strong> - The string that will be written to the file</li>
1879-
<li><strong>error</strong> - (optional) - If an error is encountered when attempting to read the file, it will be stored here as a #file/error.</li>
1879+
<li><strong>error</strong> - If an error is encountered when attempting to read the file, it will be stored here as a #file/error.</li>
18801880
<li><strong>#file/complete</strong> - When the contents are written successfully, the record will be tagged #file/complete.</li>
18811881
</ul>
18821882
</td>

0 commit comments

Comments
 (0)