Fix spelling error in log message
[scpubgit/Object-Remote.git] / lib / Object / Remote / Tied.pm
CommitLineData
b51a8453 1package Object::Remote::Tied;
2
3use strictures 1;
4
5#a proxied tied object just ties to the
6#proxy object that exists on the remote
7#side of the actual tied variable - when
8#creating the remote tied variable the proxy
9#is passed to the constructor
10
11sub TIEHASH {
1a7f821f 12 return $_[1];
b51a8453 13}
14
15sub TIEARRAY {
1a7f821f 16 return $_[1];
b51a8453 17}
18
19
201;
21