Update NetworkBehaviour.md

Simple typo for `ClientRPC` attribute that should be `ClientRpc`
This commit is contained in:
rxmarccall 2019-12-20 15:42:16 -07:00 committed by GitHub
parent ea4fc93159
commit 5658b0695d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -104,7 +104,7 @@ Client RPC calls are not restricted to player game objects, and may be called on
To define a Client RPC call in your code, you must write a function which: To define a Client RPC call in your code, you must write a function which:
- Has a name that begins with `Rpc` - Has a name that begins with `Rpc`
- Has the `ClientRPC` attribute - Has the `ClientRpc` attribute
See [Communications](Communications/index.md) and related sections for more information. See [Communications](Communications/index.md) and related sections for more information.