Flan -> Froyo
diff --git a/docs/debugger.html b/docs/debugger.html
index 919739d..1c47c7a 100644
--- a/docs/debugger.html
+++ b/docs/debugger.html
@@ -55,9 +55,9 @@
but when the VM sees debugger packets it allocates additional data
structures and may switch to a different implementation of the interpreter.
</p><p>
-Pre-Flan implementations of the Dalvik VM used read-only memory mappings
+Pre-Froyo implementations of the Dalvik VM used read-only memory mappings
for all bytecode, which made it necessary to scan for breakpoints by
-comparing the program counter to a set of addresses. In Flan this was
+comparing the program counter to a set of addresses. In Froyo this was
changed to allow insertion of breakpoint opcodes. This allows the VM
to execute code more quickly, and does away with the hardcoded limit
of 20 breakpoints. Even with this change, however, the debug-enabled