diff options
author | Joey Hess <joey@kodama.kitenet.net> | 2008-08-26 17:59:38 -0400 |
---|---|---|
committer | Joey Hess <joey@kodama.kitenet.net> | 2008-08-26 17:59:38 -0400 |
commit | 29cb940f7765dddd46f97b218a2a1f2446e2a27c (patch) | |
tree | 2a13a0d5c7dec3bfe39fca360d2993ffc4532dae /doc/plugins | |
parent | 43abdd87bf3da7c26e52fdf42664f00824c1e8bf (diff) | |
download | ikiwiki-29cb940f7765dddd46f97b218a2a1f2446e2a27c.tar ikiwiki-29cb940f7765dddd46f97b218a2a1f2446e2a27c.tar.gz |
"memoize" is a technical term, != "memorize"
Diffstat (limited to 'doc/plugins')
-rw-r--r-- | doc/plugins/write/external.mdwn | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/plugins/write/external.mdwn b/doc/plugins/write/external.mdwn index cffbed86c..272f74a7c 100644 --- a/doc/plugins/write/external.mdwn +++ b/doc/plugins/write/external.mdwn @@ -134,7 +134,7 @@ large quantity of data conversion going on. In contrast, `preprocess` hooks are called generally rarely, and pass around minimal data. External plugins should avoid making RPC calls unnecessarily (ie, in a loop). -Memorizing the results of appropriate RPC calls is one good way to minimize the +Memoizing the results of appropriate RPC calls is one good way to minimize the number of calls. Injecting a replacement for a commonly called ikiwiki function |