diff options
author | Valentin Rothberg <vrothberg@redhat.com> | 2022-05-23 15:12:31 +0200 |
---|---|---|
committer | Valentin Rothberg <vrothberg@redhat.com> | 2022-05-24 13:40:02 +0200 |
commit | 8af98b342d69a1d4e865339d51448218eecaa995 (patch) | |
tree | e7bc54d71c74045d1713b3b8380b8ccbc81ca8db /libpod | |
parent | 737b100c5e0bf704bae6864621c3cf5eb41df2bf (diff) | |
download | podman-8af98b342d69a1d4e865339d51448218eecaa995.tar.gz podman-8af98b342d69a1d4e865339d51448218eecaa995.tar.bz2 podman-8af98b342d69a1d4e865339d51448218eecaa995.zip |
contain_top_linux.go: s/TODO/NOTE/
Change the TODO note to NOTE to actually reflect what it is:
breadcrumbs in case we want to add filtering the future.
Signed-off-by: Valentin Rothberg <vrothberg@redhat.com>
Diffstat (limited to 'libpod')
-rw-r--r-- | libpod/container_top_linux.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpod/container_top_linux.go b/libpod/container_top_linux.go index 9b3dbc873..b30e0c732 100644 --- a/libpod/container_top_linux.go +++ b/libpod/container_top_linux.go @@ -96,7 +96,7 @@ func (c *Container) Top(descriptors []string) ([]string, error) { // For more details, please refer to github.com/containers/psgo. func (c *Container) GetContainerPidInformation(descriptors []string) ([]string, error) { pid := strconv.Itoa(c.state.PID) - // TODO: psgo returns a [][]string to give users the ability to apply + // NOTE: psgo returns a [][]string to give users the ability to apply // filters on the data. We need to change the API here // to return a [][]string if we want to make use of // filtering. |