summaryrefslogtreecommitdiffhomepage
path: root/pt-br/hack-pt.html.markdown
diff options
context:
space:
mode:
authorDavid Lima <dave@blogdodave.com.br>2015-10-04 12:05:07 -0300
committerDavid Lima <dave@blogdodave.com.br>2015-10-04 12:05:07 -0300
commit09f8a34244af976f7ca29efc620a6bd51ad4ffa7 (patch)
tree24f86008d710e3f99254348fc4f126be86f687d8 /pt-br/hack-pt.html.markdown
parent29ea66dbef66944f59b5a7abe68b7113e1679791 (diff)
[hack/pt-br] Fixed some typos
Diffstat (limited to 'pt-br/hack-pt.html.markdown')
-rw-r--r--pt-br/hack-pt.html.markdown4
1 files changed, 2 insertions, 2 deletions
diff --git a/pt-br/hack-pt.html.markdown b/pt-br/hack-pt.html.markdown
index 3efa5f0a..2f9d3c1b 100644
--- a/pt-br/hack-pt.html.markdown
+++ b/pt-br/hack-pt.html.markdown
@@ -285,7 +285,7 @@ interface InterfaceGatinho
public function brinca() : void;
}
-trait TraitGato implements GatinhoInterface
+trait TraitGato implements InterfaceGatinho
{
public function brinca() : void
{
@@ -300,7 +300,7 @@ class Samuel
$gato = new Samuel();
-$gato instanceof GatinhoInterface === true; // True
+$gato instanceof InterfaceGatinho === true; // True
```