about summary refs log tree commit homepage
path: root/README
diff options
context:
space:
mode:
authorEric Wong <bofh@yhbt.net>2020-08-10 22:21:50 +0000
committerEric Wong <bofh@yhbt.net>2020-08-10 22:21:50 +0000
commit24ea2b29600f6c2e2a7180eb58b5256f961b7c3f (patch)
treebd8ca35023f35ced60a4aab3e20705fced359b5f /README
parent6e8728da2b4a98efdd90409acc7c27d305a1010b (diff)
downloadclogger-24ea2b29600f6c2e2a7180eb58b5256f961b7c3f.tar.gz
It's always been supported (since it's just an eval), but make
it explicit.  We'll also drop the Actor.current example since
both Rubinius and Revactor seem dead and Ractor (Guild) is
probably coming...
Diffstat (limited to 'README')
-rw-r--r--README2
1 files changed, 1 insertions, 1 deletions
diff --git a/README b/README
index c90dd1a..cdb8fba 100644
--- a/README
+++ b/README
@@ -89,7 +89,7 @@ that receives a "<<" method:
 * $ip - X-Forwarded-For request header if available, $remote_addr if not
 * $pid - process ID of the current process
 * $e{Thread.current} - Thread processing the request
-* $e{Actor.current} - Actor processing the request (Revactor or Rubinius)
+* $e{Fiber.current} - Fiber processing the request
 * $env{variable_name} - any Rack environment variable (e.g. rack.url_scheme)
 
 == REQUIREMENTS