summaryrefslogtreecommitdiff
path: root/payload.go
diff options
context:
space:
mode:
Diffstat (limited to 'payload.go')
-rw-r--r--payload.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/payload.go b/payload.go
index 154cec95..502dfadd 100644
--- a/payload.go
+++ b/payload.go
@@ -1,12 +1,12 @@
package roadrunner
-// Payload carries binary header and body to workers and
+// Payload carries binary header and body to stack and
// back to the server.
type Payload struct {
// Context represent payload context, might be omitted.
Context []byte
- // body contains binary payload to be processed by worker.
+ // body contains binary payload to be processed by WorkerProcess.
Body []byte
}