Skip to content

Commit 99a7d83

Browse files
committed
change
1 parent 88e4b83 commit 99a7d83

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Assets/Proxy Pattern/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ The classes and objects participating in this pattern are:
1616
* provides an interface identical to Subject's so that a proxy can be substituted for for the real subject.
1717
* controls access to the real subject and may be responsible for creating and deleting it.
1818
* other responsibilites depend on the kind of proxy:
19-
* 'remote proxies' are responsible for encoding a request and its arguments and for sending the encoded request to the real subject in a different address space.
20-
* 'virtual proxies' may cache additional information about the real subject so that they can postpone accessing it. For example, the ImageProxy from the Motivation caches the real images's extent.
21-
* 'protection proxies' check that the caller has the access permissions required to perform a request.
19+
* `remote proxies` are responsible for encoding a request and its arguments and for sending the encoded request to the real subject in a different address space.
20+
* `virtual proxies` may cache additional information about the real subject so that they can postpone accessing it. For example, the ImageProxy from the Motivation caches the real images's extent.
21+
* `protection proxies` check that the caller has the access permissions required to perform a request.
2222
###Subject (IMath)
2323
defines the common interface for RealSubject and Proxy so that a Proxy can be used anywhere a RealSubject is expected.
2424
###RealSubject (Math)

0 commit comments

Comments
 (0)