Man pages for `ansible` and `ansible-playbook` define `-i` option as:
-i PATH, --inventory=PATH
The PATH to the inventory hosts file, which defaults to
/etc/ansible/hosts.
Yet to run on a local system the following syntax is used in examples:
ansible -i "localhost," -c local -m ping localhost
What exactly is this `"localhost,"` with a comma at the end (otherwise it is treated as filename)? How does it relate to `PATH`?