From 7f19ca4fbe61f4a454eb55b018f222305f87ce7a Mon Sep 17 00:00:00 2001 From: Helin Wang Date: Thu, 16 Feb 2017 17:53:46 -0800 Subject: [PATCH] fix capitalization --- doc/design/reader/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/design/reader/README.md b/doc/design/reader/README.md index be337a800..8f7abf12f 100644 --- a/doc/design/reader/README.md +++ b/doc/design/reader/README.md @@ -43,7 +43,7 @@ paddle.train(paddle.dataset.mnist, {"image":0, "label":1}, 128, 10, ...) ## Data Reader Decorators -Data Reader Decorators takes a single or multiple data reader, returns a new data reader. It is similar to a [python decorator](https://wiki.python.org/moin/PythonDecorators), but it does not use `@` syntax. +Data reader decorators takes a single or multiple data reader, returns a new data reader. It is similar to a [python decorator](https://wiki.python.org/moin/PythonDecorators), but it does not use `@` syntax. Since we have a strict interface for data readers (no parameter, return a single data item). Data reader can be used flexiable via data reader decorators. Following are a few examples: -- GitLab