Merge pull request #2957 from ferfedel/patch-1

[csharp/pt-br] Missing translation
This commit is contained in:
Andre Polykanine A.K.A. Menelion Elensúlë 2017-11-03 23:07:28 +02:00 committed by GitHub
commit 8b9732e215
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -823,10 +823,10 @@ on a new line! ""Wow!"", the masses cried";
}
}
// Interfaces only contain signatures of the members, without the implementation.
// Interfaces contêm apenas as assinaturas dos membros, sem a implementação.
interface IJumpable
{
void Jump(int meters); // all interface members are implicitly public
void Jump(int meters); // todos os membros da interface são implicitamente públicos
}
interface IBreakable