Skip to content

Commit 0075460

Browse files
committed
typo correction
1 parent 16ee0e2 commit 0075460

File tree

11 files changed

+14
-14
lines changed

11 files changed

+14
-14
lines changed

install/windows/iis.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
</simpara>
3737
</simplesect>
3838
<simplesect>
39-
<title>Examplo de script em lote</title>
39+
<title>Exemplo de script em lote</title>
4040
<example>
4141
<title>Linha de comando para configurar o IIS e o PHP</title>
4242
<programlisting>

language/control-structures/foreach.xml

+4-4
Original file line numberDiff line numberDiff line change
@@ -49,15 +49,15 @@ foreach (expressão_iterável as $chave => $valor) {
4949
<programlisting role="php">
5050
<![CDATA[
5151
<?php
52-
/* Examplo: somente valor */
52+
/* Exemplo: somente valor */
5353
5454
$array = [1, 2, 3, 17];
5555
5656
foreach ($array as $value) {
5757
echo "Elemento atual de \$array: $value.\n";
5858
}
5959
60-
/* Examplo: chave e valor */
60+
/* Exemplo: chave e valor */
6161
6262
$array = [
6363
"um" => 1,
@@ -70,7 +70,7 @@ foreach ($array as $key => $value) {
7070
echo "Chave: $key => Valor: $value\n";
7171
}
7272
73-
/* Examplo: arrays chave-valor multidimensionais */
73+
/* Exemplo: arrays chave-valor multidimensionais */
7474
$grid = [];
7575
$grid[0][0] = "a";
7676
$grid[0][1] = "b";
@@ -83,7 +83,7 @@ foreach ($grid as $y => $row) {
8383
}
8484
}
8585
86-
/* Examplo: arrays dinâmicos */
86+
/* Exemplo: arrays dinâmicos */
8787
8888
foreach (range(1, 5) as $value) {
8989
echo "$value\n";

reference/dba/functions/dba-firstkey.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
<simplelist>
6363
<member><function>dba_nextkey</function></member>
6464
<member><function>dba_key_split</function></member>
65-
<member>Examplo 2 nos <link linkend="dba.examples">exemplos DBA</link></member>
65+
<member>Exemplo 2 nos <link linkend="dba.examples">exemplos DBA</link></member>
6666
</simplelist>
6767
</para>
6868
</refsect1>

reference/filter/constants.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1177,7 +1177,7 @@ string(5) "12.34"
11771177
</note>
11781178
<example>
11791179
<title>
1180-
Examplo de uso de <constant>FILTER_CALLBACK</constant> para validar
1180+
Exemplo de uso de <constant>FILTER_CALLBACK</constant> para validar
11811181
um login
11821182
</title>
11831183
<programlisting role="php">

reference/gmagick/examples.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<![CDATA[
1313
<?php
1414
// Instancia um novo objeto Gmagick
15-
$image = new Gmagick('examplo.jpg');
15+
$image = new Gmagick('exemplo.jpg');
1616
1717
// Carrega miniatura da imagem. 0 para qualquer eixo preserva a razão de aspecto
1818
$image->thumbnailimage(100, 0);

reference/imagick/imagick/chopimage.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
<example>
8181
<title>Usando <function>Imagick::chopImage</function>:</title>
8282
<para>
83-
Examplo de uso de Imagick::chopImage
83+
Exemplo de uso de Imagick::chopImage
8484
</para>
8585
<programlisting role="php">
8686
<![CDATA[

reference/imagick/imagick/identifyimage.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
&reftitle.examples;
5454
<para>
5555
<example>
56-
<title>Examplo de Formato de Resultado</title>
56+
<title>Exemplo de Formato de Resultado</title>
5757
<screen>
5858
<![CDATA[
5959
Array

reference/imagick/imagick/setfont.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
<example>
8585
<title>Um exemplo de <function>Imagick::setFont</function></title>
8686
<para>
87-
Examplo de uso de Imagick::setFont
87+
Exemplo de uso de Imagick::setFont
8888
</para>
8989
<programlisting role="php">
9090
<![CDATA[

reference/info/functions/getenv.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@
103103
<programlisting role="php">
104104
<![CDATA[
105105
<?php
106-
// Examplo de uso de getenv()
106+
// Exemplo de uso de getenv()
107107
$ip = getenv('REMOTE_ADDR');
108108
109109
// Ou simplesmente usa uma variável super global ($_SERVER ou $_ENV)

reference/network/functions/headers-sent.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
&reftitle.examples;
7171
<para>
7272
<example>
73-
<title>Examplos de uso de <function>headers_sent</function></title>
73+
<title>Exemplos de uso de <function>headers_sent</function></title>
7474
<programlisting role="php">
7575
<![CDATA[
7676
<?php

reference/yaf/yaf-router.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ $conf = array(
117117
);
118118
119119
Apenas controlador:
120-
http://examplo/noticias
120+
http://example/noticias
121121
controlador == noticias
122122
Apenas ação (quando definido yaf.action_prefer=1 no php.ini)
123123
ação == noticias

0 commit comments

Comments
 (0)