diff --git a/README.md b/README.md index d27abd5..4e297c0 100644 --- a/README.md +++ b/README.md @@ -1152,7 +1152,7 @@ class Counter: * **Iterators returned by the [iter()](#iterator) function, such as list\_iterator and set\_iterator.** * **Objects returned by the [itertools](#itertools) module, such as count, repeat and cycle.** * **Generators returned by the [generator functions](#generator) and [generator expressions](#comprehension).** -* **All [file objects](#file), etc.** +* **File objects returned by the [open()](#open) function, etc.** ### Callable * **All functions and classes have a call() method, hence are callable.** diff --git a/index.html b/index.html index e7b7686..61ad9a4 100644 --- a/index.html +++ b/index.html @@ -1094,7 +1094,7 @@ Z = dataclasses.make_dataclass('Z', [Iterators returned by the iter() function, such as list_iterator and set_iterator.
  • Objects returned by the itertools module, such as count, repeat and cycle.
  • Generators returned by the generator functions and generator expressions.
  • -
  • All file objects, etc.
  • +
  • File objects returned by the open() function, etc.
  • Callable