1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-10 01:48:00 +00:00

udp: Correct name of ProxySocket type in example.

(I don't think this type has ever been called 'Proxy'.)
This commit is contained in:
Jacob Nevins 2022-01-11 23:11:18 +00:00
parent c78226a711
commit 1ca557a29b

View File

@ -558,8 +558,8 @@ based on the offset within that structure of the field called
This system is flexible enough to permit \q{multiple inheritance}, or
rather, multiple \e{implementation}: having one object type implement
more than one trait. For example, the \cw{Proxy} type implements both
the \cw{Socket} trait and the \cw{Plug} trait that connects to it,
more than one trait. For example, the \cw{ProxySocket} type implements
both the \cw{Socket} trait and the \cw{Plug} trait that connects to it,
because it has to act as an adapter between another instance of each
of those types.