Correct mispelt 'd' and 'e' words.

This commit is contained in:
martin-osborne
2015-04-10 10:54:47 +01:00
parent 12c0594db6
commit e9dce11e50
18 changed files with 24 additions and 24 deletions

View File

@@ -516,7 +516,7 @@ ValueType AnyCast(Any& operand)
/// Example Usage:
/// MyType tmp = AnyCast<MyType>(anAny).
/// Will throw a BadCastException if the cast fails.
/// Dont use an AnyCast in combination with references, i.e. MyType& tmp = ... or const MyType& tmp = ...
/// Do not use an AnyCast in combination with references, i.e. MyType& tmp = ... or const MyType& tmp = ...
/// Some compilers will accept this code although a copy is returned. Use the RefAnyCast in
/// these cases.
{
@@ -535,7 +535,7 @@ ValueType AnyCast(const Any& operand)
/// Example Usage:
/// MyType tmp = AnyCast<MyType>(anAny).
/// Will throw a BadCastException if the cast fails.
/// Dont use an AnyCast in combination with references, i.e. MyType& tmp = ... or const MyType& = ...
/// Do not use an AnyCast in combination with references, i.e. MyType& tmp = ... or const MyType& = ...
/// Some compilers will accept this code although a copy is returned. Use the RefAnyCast in
/// these cases.
{