From e6b7d9a6c973bb9da12a8b118fc513b1668fbbd2 Mon Sep 17 00:00:00 2001
From: Sebastian Raschka <mail@sebastianraschka.com>
Date: Tue, 5 May 2020 11:58:59 -0500
Subject: [PATCH] Update README.md

---
 errata/README.md | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/errata/README.md b/errata/README.md
index 3c86a17d..407f67fa 100644
--- a/errata/README.md
+++ b/errata/README.md
@@ -34,6 +34,8 @@
 
 ![](images/524-old.png)
 
+- pg. 526, to be more consistent with the text and cover a more general scenario (where padding is not `'same'`), the line `for i in range(0, int(len(x)/s), s):` in the `conv1d` function could be changed to  `for i in range(0, int((len(x_padded) - len(w_rot)) / s) + 1, s):`
+
 ## Chapter 18
 
 - pg. 713: Not a code error, but the line `self.enf = env` could be changed to `self.env = env` to look more consistent