summaryrefslogtreecommitdiff
path: root/src/sims/dynamics/joints/ForceJoint.scala
diff options
context:
space:
mode:
authorJakob Odersky <jodersky@gmail.com>2009-12-20 17:53:45 +0000
committerJakob Odersky <jodersky@gmail.com>2009-12-20 17:53:45 +0000
commite87fcc40f9a2e8624d3260abf8180596de79b152 (patch)
treea3052eb7b657099e2bd616ce74b903f6250527e5 /src/sims/dynamics/joints/ForceJoint.scala
parent66d338aec5d632927fa561a68310c8931938e9e0 (diff)
downloadsims-e87fcc40f9a2e8624d3260abf8180596de79b152.tar.gz
sims-e87fcc40f9a2e8624d3260abf8180596de79b152.tar.bz2
sims-e87fcc40f9a2e8624d3260abf8180596de79b152.zip
Made code fully compatible with scala 2.8.
Diffstat (limited to 'src/sims/dynamics/joints/ForceJoint.scala')
-rw-r--r--src/sims/dynamics/joints/ForceJoint.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sims/dynamics/joints/ForceJoint.scala b/src/sims/dynamics/joints/ForceJoint.scala
index 1eed850..2074ee4 100644
--- a/src/sims/dynamics/joints/ForceJoint.scala
+++ b/src/sims/dynamics/joints/ForceJoint.scala
@@ -9,6 +9,6 @@ package sims.dynamics.joints
/**A joint which can apply a force to its anchor bodies, thus adding or removing energy to the system.*/
trait ForceJoint {
- /**Applies a force on the achor bodies.*/
+ /**Applies a force on the anchor bodies.*/
def applyForce(): Unit
}