Fix comment.


git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@1056405 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/framework/src/main/java/org/apache/felix/framework/Felix.java b/framework/src/main/java/org/apache/felix/framework/Felix.java
index 3b7aba6..7b3fa2b 100644
--- a/framework/src/main/java/org/apache/felix/framework/Felix.java
+++ b/framework/src/main/java/org/apache/felix/framework/Felix.java
@@ -4752,12 +4752,12 @@
     }
 
     /**
-     * Promotes a bundle lock to the global lock. This is called by a thread
-     * wanting the global lock, but already holding a bundle lock (currently
-     * only when updating a bundle). Since it is possible to deadlock when
-     * trying to acquire the global lock while holding a bundle lock, this
-     * method may fail if a potential deadlock is detected.
-     * @param bundle The bundle already locked by the calling thread.
+     * Attempts to acquire the global lock. Will also promote a bundle lock
+     * to the global lock, if the calling thread already holds a bundle lock.
+     * Since it is possible to deadlock when trying to acquire the global lock
+     * while holding a bundle lock, this method may fail if a potential deadlock
+     * is detected. If the calling thread does not hold a bundle lock, then it
+     * will wait indefinitely to acquire the global.
      * @return <tt>true</tt> if the global lock was successfully acquired,
      *         <tt>false</tt> otherwise.
     **/