From 61f0c75a5fde8b6b18d56f93697626bb90657fac Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Thu, 12 Mar 2009 17:03:17 +0100 Subject: [PATCH] Small documentation changes. --- src/net/habraun/sd/SimpleBroadPhase.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/net/habraun/sd/SimpleBroadPhase.scala b/src/net/habraun/sd/SimpleBroadPhase.scala index 6b92923..ad79a7f 100644 --- a/src/net/habraun/sd/SimpleBroadPhase.scala +++ b/src/net/habraun/sd/SimpleBroadPhase.scala @@ -21,7 +21,7 @@ package net.habraun.sd /** - * SimpleBroadPhase is the simplest possible implementation of a broad phase. It just builds all possible + * SimpleBroadPhase is the simplest possible implementation of a broad phase. It just compiles all possible * pairs of the bodies it is given and returns those. * If any other broad phase implementation is available, it should probably be used in place of this one. */ @@ -29,7 +29,7 @@ package net.habraun.sd class SimpleBroadPhase extends BroadPhase { /** - * Builds and returns all possible pairs of the given bodies. + * Returns all possible pairs of the given bodies. */ def detectPossibleCollisions(bodies: List[Body]) = { -- 2.11.4.GIT