Skip to content

Commit

Permalink
more grammar cleanups
Browse files Browse the repository at this point in the history
  • Loading branch information
108adams committed Feb 25, 2015
1 parent 6c201da commit 660b48d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions doc/pl/function/scopes.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ jak zostało zastosowane windowanie (hoisting).
Analizując poniższy kod bez wiedzy na temat hoistingu możemy odnieść wrażenie,
że zobaczymy błąd `ReferenceError`.

// sprawdz czy SomeImportantThing zostało zainicjalizowane
// sprawdź, czy SomeImportantThing zostało zainicjalizowane
if (!SomeImportantThing) {
var SomeImportantThing = {};
}
Expand All @@ -163,9 +163,9 @@ przeniesiona na początek *globalnego zasięgu*.

var SomeImportantThing;

// inny kod który może ale nie musi zainicjalizować SomeImportantThing
// inny kod, który może, ale nie musi zainicjalizować SomeImportantThing

// upewnienie się, że SomeImportantThing zostało zainicjalizowane
// upewnij się, że SomeImportantThing zostało zainicjalizowane
if (!SomeImportantThing) {
SomeImportantThing = {};
}
Expand Down

0 comments on commit 660b48d

Please sign in to comment.