Question about circleci/aws-cli@4.0.0 executor docs

Hi,

circleci/aws-cli@4.0.0 executor docs says it uses cimg/python and able to select Python version, but actually it uses cimg/base image.

description: >
  Highly cached minimal Ubuntu docker designed for CircleCI with Python and
  NodeJS installed.
docker:
  - image: cimg/base:<<parameters.tag>>
parameters:
  tag:
    default: current
    description: >
      Select your python version or any of the available tags here:
      https://hub.docker.com/r/cimg/python.
    type: string

Is it possible the docs (section of description and parameters description) isn’t fixed?

Thanks.