Commit 034169d
Fix missing multiplication operator in pendulum example
Add missing multiplication operator between 0.1 and sin(t) in the
pendulum external torque definition. In Julia, you cannot write
0.1sin(t) - you need 0.1 * sin(t) for the multiplication operator.
This fixes a syntax error that would cause the code example to fail
when executed.
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <[email protected]>1 parent 7bc71f7 commit 034169d
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
379 | 379 | | |
380 | 380 | | |
381 | 381 | | |
382 | | - | |
| 382 | + | |
383 | 383 | | |
384 | 384 | | |
385 | 385 | | |
| |||
0 commit comments