spelling fix (#17911)
authorcbockman <c.bockman@gmail.com>
Thu, 22 Mar 2018 13:42:39 +0000 (06:42 -0700)
committerShanqing Cai <cais@google.com>
Thu, 22 Mar 2018 13:42:39 +0000 (09:42 -0400)
tensorflow/contrib/data/python/ops/grouping.py

index a19be22..ae10d2e 100644 (file)
@@ -42,7 +42,7 @@ def group_by_window(key_func,
   This transformation maps each consecutive element in a dataset to a key
   using `key_func` and groups the elements by key. It then applies
   `reduce_func` to at most `window_size_func(key)` elements matching the same
-  key. All execpt the final window for each key will contain
+  key. All except the final window for each key will contain
   `window_size_func(key)` elements; the final window may be smaller.
 
   You may provide either a constant `window_size` or a window size determined by