summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAndre Polykanine A.K.A. Menelion Elensúlë <andre@oire.org>2017-11-03 23:07:28 +0200
committerGitHub <noreply@github.com>2017-11-03 23:07:28 +0200
commit8b9732e2151fa8bc07818ed17380bd2e2c5b47d8 (patch)
treec53e9bcc53195b7ad266bd5f558914dab60a98d3
parent61c8a084341b006e97ef0ad3f4f66e29db2b8239 (diff)
parentc14dc8fd1d0f04b90c9e5195bb21acc88f90e05b (diff)
Merge pull request #2957 from ferfedel/patch-1
[csharp/pt-br] Missing translation
-rw-r--r--pt-br/csharp-pt.html.markdown4
1 files changed, 2 insertions, 2 deletions
diff --git a/pt-br/csharp-pt.html.markdown b/pt-br/csharp-pt.html.markdown
index 16321c82..2586b266 100644
--- a/pt-br/csharp-pt.html.markdown
+++ b/pt-br/csharp-pt.html.markdown
@@ -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