diff options
author | David Lima <dave@blogdodave.com.br> | 2015-10-04 12:05:07 -0300 |
---|---|---|
committer | David Lima <dave@blogdodave.com.br> | 2015-10-04 12:05:07 -0300 |
commit | 09f8a34244af976f7ca29efc620a6bd51ad4ffa7 (patch) | |
tree | 24f86008d710e3f99254348fc4f126be86f687d8 /pt-br | |
parent | 29ea66dbef66944f59b5a7abe68b7113e1679791 (diff) |
[hack/pt-br] Fixed some typos
Diffstat (limited to 'pt-br')
-rw-r--r-- | pt-br/hack-pt.html.markdown | 4 |
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 ``` |