From dfe86a797ddd6d9c54c58a20da5572ab9c8e69fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sami=20Kalliom=C3=A4ki?= Date: Wed, 16 Nov 2022 10:35:39 +0000 Subject: [PATCH] Update docs 2. --- docs/collections_doc.md | 2 +- lib/collections.bzl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/collections_doc.md b/docs/collections_doc.md index f32b964..cc8b6db 100755 --- a/docs/collections_doc.md +++ b/docs/collections_doc.md @@ -90,7 +90,7 @@ This behaves like collapsing the first dimension of the iterable. | Name | Description | Default Value | | :------------- | :------------- | :------------- | -| iterable | An iterable of iterables to be collapsed to a list. | none | +| iterable | An iterable to be collapsed to a list. | none | **RETURNS** diff --git a/lib/collections.bzl b/lib/collections.bzl index bfb421e..5f59a2d 100644 --- a/lib/collections.bzl +++ b/lib/collections.bzl @@ -71,7 +71,7 @@ def _flatten(iterable): This behaves like collapsing the first dimension of the iterable. Args: - iterable: An iterable of iterables to be collapsed to a list. + iterable: An iterable to be collapsed to a list. Returns: A new list with the collapsed elements from `iterable`.