Skip to content

Commit f20143a

Browse files
committed
Typo
1 parent 13d699e commit f20143a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1368,7 +1368,7 @@ shortens the GC pauses and/or increases the overall throughput of the system.
13681368
`ThreadLocal` are long-living and there is a fixed number of them (e. g. workers of a fixed-sized
13691369
`ThreadPoolExecutor`) and there is a greater number of shorter-living `ThreadLocal`-containing
13701370
objects, was it considered to **replace the instance-level `ThreadLocal<Val>` with a
1371-
`ConcurrentHashMap<Thread, Val> threadLocalValues` confined to the objects**, accessed via like
1371+
`ConcurrentHashMap<Thread, Val> threadLocalValues` confined to the objects**, accessed like
13721372
`threadLocalValues.get(Thread.currentThread())`? This approach requires some confidence and
13731373
knowledge about the threading model of the subsystem (see [Dc.2](threading-flow-model)), though it
13741374
may also be trivial if Active Object pattern is used (see [Dn.2](#use-patterns)), but is much

0 commit comments

Comments
 (0)