aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenoit Germain <benoit.germain@ubisoft.com>2025-09-22 18:13:37 +0200
committerBenoit Germain <benoit.germain@ubisoft.com>2025-09-22 18:13:37 +0200
commit87f910a1affe649d43904c217ebd51aa90303cae (patch)
tree7d6c7aad076a8e54d204d388cdf6a79bd5cae279
parentc52571736d852d2636bd285d19c613be5c706cff (diff)
downloadlanes-87f910a1affe649d43904c217ebd51aa90303cae.tar.gz
lanes-87f910a1affe649d43904c217ebd51aa90303cae.tar.bz2
lanes-87f910a1affe649d43904c217ebd51aa90303cae.zip
Fix a small doc typo
-rw-r--r--docs/index.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/index.html b/docs/index.html
index 0d24d55..9270ce6 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -71,7 +71,7 @@
71 </p> 71 </p>
72 72
73 <p> 73 <p>
74 This document was revised on 19-Sep-25, and applies to version <tt>4.0.0</tt>. 74 This document was revised on 22-Sep-2025, and applies to version <tt>4.0.0</tt>.
75 </p> 75 </p>
76 </font> 76 </font>
77 </center> 77 </center>
@@ -1832,7 +1832,7 @@
1832 <li><tt>nil</tt>: The value is not converted. If it is not a clonable or deep userdata, the transfer will eventually fail with an error.</li> 1832 <li><tt>nil</tt>: The value is not converted. If it is not a clonable or deep userdata, the transfer will eventually fail with an error.</li>
1833 <li><tt>lanes.null</tt>: The value is converted to <tt>nil</tt>.</li> 1833 <li><tt>lanes.null</tt>: The value is converted to <tt>nil</tt>.</li>
1834 <li><tt>"decay"</tt>: The value is converted to a light userdata obtained from <tt>lua_topointer()</tt>.</li> 1834 <li><tt>"decay"</tt>: The value is converted to a light userdata obtained from <tt>lua_topointer()</tt>.</li>
1835 <li>A function: The function is called as <tt>o:__lanesconvert(string)</tt>, where the argument is either <tt>"keeper"</tt> (sending data in a Linda) or <tt>"regular"</tt> (when creating or calling a Lane generator). Its first return value is the result of the conversion, the rest is ignored. Transfer is then attempted on the new value. If this also requires a conversion, it will be done, up to a depth of 3, after which an error will be raised.</li> 1835 <li>A function: The function is called as <tt>o:__lanesconvert(string)</tt>, where the argument is either <tt>"keeper"</tt> (sending data in a Linda) or <tt>"regular"</tt> (when creating or calling a Lane generator). Its first return value is the result of the conversion, the rest is ignored. Transfer is then attempted on the new value. If this also requires a conversion, it will be done, up to a count of <a href="#convert_max_attempts"><tt>convert_max_attempts</tt></a>, after which an error will be raised.</li>
1836 <li>Any other value raises an error.</li> 1836 <li>Any other value raises an error.</li>
1837 </ul> 1837 </ul>
1838 </li> 1838 </li>