diff options
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/constant_autoloading_and_reloading.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/constant_autoloading_and_reloading.md b/guides/source/constant_autoloading_and_reloading.md index 62dd1ac234..4d016af2c2 100644 --- a/guides/source/constant_autoloading_and_reloading.md +++ b/guides/source/constant_autoloading_and_reloading.md @@ -113,7 +113,7 @@ the nesting in (2) is different, `XML` does not belong to it: ``` We can see in this example that the name of a class or module that belongs to a -certaing nesting does not necessarily correlate with the namespaces at the spot. +certain nesting does not necessarily correlate with the namespaces at the spot. Even more, they are totally independent, take for instance @@ -163,7 +163,7 @@ getting too much into the details, the resolution algorithm for relative constant references goes like this: 1. First, if the nesting is not empty it looks for the constant in its elements -and in order, ingoring their ancestors. +and in order, ignoring their ancestors. 2. If not found, then it walks up the ancestor chain of the cref. |