From 64ea08500c3e96f576e25bf34718c459e1770bba Mon Sep 17 00:00:00 2001 From: Stefan O'Rear Date: Wed, 19 Jun 2013 11:37:58 -0700 Subject: [PATCH] Fix comment thinko --- src/vm/jvm/runtime/org/perl6/nqp/runtime/ContextKey.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vm/jvm/runtime/org/perl6/nqp/runtime/ContextKey.java b/src/vm/jvm/runtime/org/perl6/nqp/runtime/ContextKey.java index 7ac6fa4252..b450ac6266 100644 --- a/src/vm/jvm/runtime/org/perl6/nqp/runtime/ContextKey.java +++ b/src/vm/jvm/runtime/org/perl6/nqp/runtime/ContextKey.java @@ -5,7 +5,7 @@ import java.lang.invoke.MethodType; /** - * Provides a simple way for HLL authors to hang data off of ThreadContext and GlobalContext. The implementation uses a monomorphic inline cache for speed when a single HLL is running most of the time. + * Provides a simple way for HLL authors to hang data off of ThreadContext and GlobalContext. The implementation uses a monomorphic thread-local cache for speed when a single HLL is running most of the time. */ public class ContextKey { Class tclass;