diff options
author | Ian Fleeton <ianfleeton@gmail.com> | 2013-07-14 11:01:46 +0100 |
---|---|---|
committer | Ian Fleeton <ianfleeton@gmail.com> | 2013-07-14 11:01:46 +0100 |
commit | 0e262b3b644899b9031c5ba85f9d2e5d85cc0a79 (patch) | |
tree | 429a2b93f08dd859cf22ed95d1d07965fdb84b5c /guides | |
parent | 5a52fbe1cbfe3c58184f33ca1bfc451e6e473284 (diff) | |
download | rails-0e262b3b644899b9031c5ba85f9d2e5d85cc0a79.tar.gz rails-0e262b3b644899b9031c5ba85f9d2e5d85cc0a79.tar.bz2 rails-0e262b3b644899b9031c5ba85f9d2e5d85cc0a79.zip |
memorized -> memoized typo fix [ci skip]
Reverts one line from 457b7ff9
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/initialization.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/initialization.md b/guides/source/initialization.md index 11c736585f..26259408b4 100644 --- a/guides/source/initialization.md +++ b/guides/source/initialization.md @@ -350,7 +350,7 @@ end The interesting part for a Rails app is the last line, `server.run`. Here we encounter the `wrapped_app` method again, which this time we're going to explore more (even though it was executed before, and -thus memorized by now). +thus memoized by now). ```ruby @wrapped_app ||= build_app app |