Skip to content

Commit b5b19c3

Browse files
TysonAndrenikic
authored andcommitted
Fix typo in spec/
And remove trailing whitespace
1 parent 4094fe3 commit b5b19c3

File tree

2 files changed

+41
-41
lines changed

2 files changed

+41
-41
lines changed

spec/07-variables.md

+40-40
Original file line numberDiff line numberDiff line change
@@ -69,14 +69,14 @@ echo NON_EXISTING_CONSTANT; // uses 'NON_EXISTING_CONSTANT' as substitution
6969
// value and emits a warning stating that the
7070
// constant was undefined.
7171

72-
echo NON_EXISTING_CONSTANT; // same here, the constant is still undefined
73-
// and 'NON_EXISTING_CONSTANT' is used as
74-
// substitution value and a warning is emitted
72+
echo NON_EXISTING_CONSTANT; // same here, the constant is still undefined
73+
// and 'NON_EXISTING_CONSTANT' is used as
74+
// substitution value and a warning is emitted
7575
// again.
7676

77-
echo MAX_LENGTH; // same here due to a forward usage
77+
echo MAX_LENGTH; // same here due to a forward usage
7878
// (MAX_LENGTH is defined further below).
79-
// 'MAX_LENGTH' is used as substitution
79+
// 'MAX_LENGTH' is used as substitution
8080
// value and a warning is emitted.
8181

8282
echo \NON_EXISTING_CONSTANT; // qualified use of undefined constant. Throws
@@ -138,7 +138,7 @@ See the recursive function example in [storage duration section](04-basic-concep
138138
<a name="undefined-local-variables"></a>
139139
**Undefined Local Variables**
140140

141-
A distinction is made based on the context where an undefined local variable is used.
141+
A distinction is made based on the context where an undefined local variable is used.
142142

143143
*byVal Context*
144144

@@ -162,53 +162,53 @@ Following some examples which outlines the behaviour with undefined local variab
162162
```PHP
163163
// The following 4 cases outline the exceptions of undefined variables
164164
// used in byValue context where no notice is emitted.
165-
$a;
165+
$a;
166166
isset($a);
167167
empty($a);
168168
$a ?? 'default Value';
169169

170170
$a = 1; // a VSlot for $a was created and 1 was assigned.
171171

172172
$b = $c; // a VSlot for $b was created and the value of $c was assigned to
173-
// it. But because $c in turn was undefined, NULL was used as
174-
// substitution value instead. In addition, a notice was
175-
// emitted stating that $c was undefined.
173+
// it. But because $c in turn was undefined, NULL was used as
174+
// substitution value instead. In addition, a notice was
175+
// emitted stating that $c was undefined.
176176

177-
$d = $c; // a VSlot for $d was created and the value of $c was assigned to
178-
// it. But since $c is still undefined, NULL was used as
179-
// substitution value instead and another notice was emitted
180-
// stating $c was undefined.
177+
$d = $c; // a VSlot for $d was created and the value of $c was assigned to
178+
// it. But since $c is still undefined, NULL was used as
179+
// substitution value instead and another notice was emitted
180+
// stating $c was undefined.
181181

182-
$d + $e; // $e was undefined and `NULL` was used as substitution value
183-
// instead. In addition, a notice was emitted stating that
182+
$d + $e; // $e was undefined and `NULL` was used as substitution value
183+
// instead. In addition, a notice was emitted stating that
184184
// $e was undefined.
185185

186186
$f = &$g; // a VSlot for $f was created which points to the VSlot of $g.
187-
// $g in turn was undefined but was defined implicitly because the
187+
// $g in turn was undefined but was defined implicitly because the
188188
// assignment was byRef. Thus a VSlot for $g was created and `NULL`
189189
// was assigned to it. A notice was *not* emitted.
190190

191-
$h = $g; // a VSlot for $h was created and the value of $g (which is NULL)
191+
$h = $g; // a VSlot for $h was created and the value of $g (which is NULL)
192192
// was assigned to it.
193193

194194
function foo($x){}
195195

196-
foo($i); // $i was undefined and NULL was used as substitution value
197-
// instead. In addition, a notice was emitted stating that $i
196+
foo($i); // $i was undefined and NULL was used as substitution value
197+
// instead. In addition, a notice was emitted stating that $i
198198
// was undefined.
199199

200-
$j = $i; // a VSlot for $j was created and the value of $i was assigned to
201-
// it. But because $i in turn was still undefined, NULL was used
202-
// as substitution value instead. Another notice was emitted
200+
$j = $i; // a VSlot for $j was created and the value of $i was assigned to
201+
// it. But because $i in turn was still undefined, NULL was used
202+
// as substitution value instead. Another notice was emitted
203203
// stating that $i was undefined.
204204

205205
function bar(&$x){}
206206

207-
bar($k); // $k was undefined but implicitly defined because it was passed to
208-
// the function bar byRef. Thus a VSlot for $k was created and
207+
bar($k); // $k was undefined but implicitly defined because it was passed to
208+
// the function bar byRef. Thus a VSlot for $k was created and
209209
// NULL was assigned to it. A notice was *not* emitted.
210210

211-
$l = $k; // a VSlot for $l was created and the value of $k (which is NULL)
211+
$l = $k; // a VSlot for $l was created and the value of $k (which is NULL)
212212
// was assigned to it.
213213

214214
```
@@ -230,7 +230,7 @@ array's name. An array element has allocated [storage duration](04-basic-concept
230230

231231
**Undefined Array Elements**
232232

233-
Similar to [undefined local variables](#undefined-local-variables), a distinction is made based on the context where an undefined array element is used.
233+
Similar to [undefined local variables](#undefined-local-variables), a distinction is made based on the context where an undefined array element is used.
234234

235235
*byValue Context*
236236

@@ -246,19 +246,19 @@ PHP defines implicitly an undefined array element when it is accessed byRef, a V
246246
$colors = ["red", "white", "blue"]; // create array with 3 elements
247247
$colors[] = "green"; // insert a new element
248248

249-
echo $colors[100]; // element with offset 100 is undefined and NULL is
250-
// used as substitution value. Moreover, a notice is
249+
echo $colors[100]; // element with offset 100 is undefined and NULL is
250+
// used as substitution value. Moreover, a notice is
251251
// emitted stating that an undefined offset was used.
252252

253-
echo $colors[100]; // element with offset 100 is still undefined and NULL
254-
// is used as substitution value instead. Another
253+
echo $colors[100]; // element with offset 100 is still undefined and NULL
254+
// is used as substitution value instead. Another
255255
// notice is emitted.
256256

257-
$b = &colors[100]; // a VSlot for $b is created which points to the array
258-
// element with the offset 100. An array element with
259-
// offset 100 was undefined but implicitly defined
260-
// because the assignment is byRef. Thus a VSlot for
261-
// the array element with offset 100 is created and
257+
$b = &colors[100]; // a VSlot for $b is created which points to the array
258+
// element with the offset 100. An array element with
259+
// offset 100 was undefined but implicitly defined
260+
// because the assignment is byRef. Thus a VSlot for
261+
// the array element with offset 100 is created and
262262
// NULL is assigned to it. A notice is *not* emitted.
263263
```
264264

@@ -335,20 +335,20 @@ Unlike the [local variable equivalent](#local-variables), function `f` outputs "
335335
calls.
336336

337337
<a name="hidingNotice"></a>
338-
Be also aware that declaring a function static can hide a local variable and/or a global variable withe the same name. The value of the local or global variable is not taken over as initial value of the function static. Subsequent modifications of the variable only modify the function static and do not affect the local nor the global variable. An example:
338+
Be also aware that declaring a function static can hide a local variable and/or a global variable with the same name. The value of the local or global variable is not taken over as initial value of the function static. Subsequent modifications of the variable only modify the function static and do not affect the local nor the global variable. An example:
339339

340340
```PHP
341341
function f(){
342342
$fs = 10; // assign 10 to the local variable $fs
343343
static $fs; // define a function static with name $fs
344-
echo "\$fs = $fs\n"; // $fs =
344+
echo "\$fs = $fs\n"; // $fs =
345345
$fs = 5; // assign 5 to the function static $fs (local variable is not modified)
346346
echo "\$fs = $fs\n"; // $fs = 5
347347
global $fs; // define a global variable with name $fs
348-
echo "\$fs = $fs\n"; // $fs =
348+
echo "\$fs = $fs\n"; // $fs =
349349
$fs = 3; // assign 3 to the global variable $fs (function static and local variable is not modified
350350
echo "\$fs = $fs\n"; // $fs = 3
351-
static $fs;
351+
static $fs;
352352
++$fs; // increment function static $fs
353353
echo "\$fs = $fs\n"; // $fs = 6
354354
}

spec/10-expressions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3479,7 +3479,7 @@ include-expression:
34793479

34803480
**Constraints**
34813481

3482-
*expresssion* must be convertable to a string, which designates
3482+
*expression* must be convertable to a string, which designates
34833483
a filename.
34843484

34853485
**Semantics**

0 commit comments

Comments
 (0)