From 39bfa1e2b9459bf03f13cfcc349af8953c40289d Mon Sep 17 00:00:00 2001 From: Yuxin Wu Date: Sat, 30 Apr 2016 16:41:53 -0400 Subject: [PATCH] fix typo --- tensorflow/python/ops/rnn_cell.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tensorflow/python/ops/rnn_cell.py b/tensorflow/python/ops/rnn_cell.py index 7ef55d8bfc5..b73219e556f 100644 --- a/tensorflow/python/ops/rnn_cell.py +++ b/tensorflow/python/ops/rnn_cell.py @@ -52,8 +52,8 @@ class RNNCell(object): LSTM (Long Short Term Memory) or GRU (Gated Recurrent Unit), and a number of operators that allow add dropouts, projections, or embeddings for inputs. Constructing multi-layer cells is supported by a super-class, MultiRNNCell, - defined later. Every RNNCell must have the properties below and and - implement __call__ with the following signature. + defined later. Every RNNCell must have the properties below and implement + __call__ with the following signature. """ def __call__(self, inputs, state, scope=None):