summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorFer <nanda.fer@gmail.com>2017-10-27 07:55:22 -0200
committerGitHub <noreply@github.com>2017-10-27 07:55:22 -0200
commitc14dc8fd1d0f04b90c9e5195bb21acc88f90e05b (patch)
tree5294a05957b7adafb054e402a93556acfaa8af33
parent5670c7381dbffa12b3d2b5e51ac9b8b1c4d9dca1 (diff)
Update csharp-pt.html.markdown
-rw-r--r--pt-br/csharp-pt.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/pt-br/csharp-pt.html.markdown b/pt-br/csharp-pt.html.markdown
index 800e3097..a6e82211 100644
--- a/pt-br/csharp-pt.html.markdown
+++ b/pt-br/csharp-pt.html.markdown
@@ -826,7 +826,7 @@ on a new line! ""Wow!"", the masses cried";
// 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