/lib/stdlib-1.14.5/doc/html/ets.html<br><br>documentation incorrectly shows the output of<br>ets:from_dets(Tab,DetsTab) -> Tab. <br><br>Output is not Tab. Filling the ETS table is a side effect of the function call.<br>
The corrected statement is<br><br>ets:from_dets(Tab,DetsTab) -> true <br><br>(Note "error in process" if either Tab or DetsTab is not open).<br><br><br>Doug Edmunds<br>
<br><br>