From 1f37e266a65436ec0cece04f940b0332f2e40f28 Mon Sep 17 00:00:00 2001
From: Keshan
Date: Mon, 25 Apr 2016 23:03:04 +0530
Subject: [PATCH 1/2] doc/book: Typo in layers.html
Writer should have been intended to write "smaller" instead of "smalle" in line 75, layers.html
---
doc/book/layers.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/doc/book/layers.html b/doc/book/layers.html
index 46cd5aee..db0dce04 100644
--- a/doc/book/layers.html
+++ b/doc/book/layers.html
@@ -72,7 +72,7 @@ What is a Layer?
Layers are the only building
blocks in Leaf. As we will see later on, everything is a layer. Even when
we construct networks, we are still just
-working with layers composed of smalle layers. This makes the API clean and expressive.
+working with layers composed of smaller layers. This makes the API clean and expressive.
A layer is like a function: given an input it computes an output.
It could be some mathematical expression, like Sigmoid, ReLU, or a non-mathematical instruction,
like querying data from a database, logging data, or anything in between.
From e24b282d48dcebb2cab44b47e4dff240270eb666 Mon Sep 17 00:00:00 2001
From: Keshan
Date: Wed, 27 Apr 2016 10:10:38 +0530
Subject: [PATCH 2/2] docs/book: Fix a typo in layers.md
Word "smalle" in line 8 in layers.md should be "smaller"
---
doc/src/layers.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/doc/src/layers.md b/doc/src/layers.md
index b33c5449..804c080f 100644
--- a/doc/src/layers.md
+++ b/doc/src/layers.md
@@ -5,7 +5,7 @@
[Layers](./deep-learning-glossary.html#Layer) are the only building
blocks in Leaf. As we will see later on, everything is a layer. Even when
we construct [networks](./deep-learning-glossary.html#Network), we are still just
-working with layers composed of smalle layers. This makes the API clean and expressive.
+working with layers composed of smaller layers. This makes the API clean and expressive.
A layer is like a function: given an input it computes an output.
It could be some mathematical expression, like Sigmoid, ReLU, or a non-mathematical instruction,