You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description:
In the usage examples within the README, the solidWs function is imported as SolidWs but used as solidWs. For consistency and convention in JavaScript (camelCase for functions), the import should be changed to solidWs.
Proposed fix:
In the "Short way" and "Long way" examples, update the import statement to:
varsolidWs=require('solid-ws')
This will maintain consistency with the function call solidWs(server).
The text was updated successfully, but these errors were encountered:
melvincarvalho
added a commit
to melvincarvalho/node-solid-ws
that referenced
this issue
Oct 8, 2024
Description:
In the usage examples within the README, the
solidWs
function is imported asSolidWs
but used assolidWs
. For consistency and convention in JavaScript (camelCase for functions), the import should be changed tosolidWs
.Proposed fix:
In the "Short way" and "Long way" examples, update the import statement to:
This will maintain consistency with the function call
solidWs(server)
.The text was updated successfully, but these errors were encountered: