From 4d3617d51ab95b0175b784c659c75faeb2515e73 Mon Sep 17 00:00:00 2001 From: simon Date: Tue, 8 Aug 2017 15:46:20 +0100 Subject: [PATCH] Documentation correction --- README.md | 2 +- doc/intro.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ebf80c5..21064bf 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ There is only one function you should need to use: (get-messages accept-language-header resource-path default-locale) -Return the most acceptable messages collection we have given this accept-language-header. Do not use this function directly, use the memoized variant get-messages, as performance will be very much better. +Return the most acceptable messages collection we have given this accept-language-header. Use this function instrad of the unmemoized variant raw-get-messages, as performance will be very much better. * `accept-language-header` should be the value of an RFC 2616 Accept-Language header; * `resource-path` should be the fully-qualified path name of the directory in which message files are stored; diff --git a/doc/intro.md b/doc/intro.md index 732bd13..f961eda 100644 --- a/doc/intro.md +++ b/doc/intro.md @@ -16,7 +16,7 @@ There is only one function you should need to use: (get-messages accept-language-header resource-path default-locale) -Return the most acceptable messages collection we have given this accept-language-header. Do not use this function directly, use the memoized variant get-messages, as performance will be very much better. +Return the most acceptable messages collection we have given this accept-language-header. Use this function instrad of the unmemoized variant raw-get-messages, as performance will be very much better. * `accept-language-header` should be the value of an RFC 2616 Accept-Language header; * `resource-path` should be the fully-qualified path name of the directory in which message files are stored;