This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author steven.daprano
Recipients docs@python, krey, steven.daprano
Date 2021-08-05.09:28:05
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1628155685.92.0.388588860394.issue44837@roundup.psfhosted.org>
In-reply-to
Content
There is nothing wrong with saying

    Create a symbolic link pointing to `src` named `dst`.

That is grammatically correct English.

We could say "create a sym link called dst pointing to src" but they mean exactly the same thing. And given that the order of parameters is src first and dst second, it makes more sense to keep the same order in the description.

Your analogy with

    Finds `haystack` in `needle`

is not correct. The analogy would be 


    find(needle, haystack)
    -> Finds `needle` in `haystack`
    -> or search haystack for needle

    os.symlink(src, dst)
    -> create symlink pointing to source called dst
    -> or create symlink called dst pointing to src


The order of arguments is the same as for ln:

    ln [OPTION]... [-T] TARGET LINK_NAME

TARGET is src, LINK_NAME is dst.


I don't think that there is anything needed to be done here.
History
Date User Action Args
2021-08-05 09:28:05steven.dapranosetrecipients: + steven.daprano, docs@python, krey
2021-08-05 09:28:05steven.dapranosetmessageid: <1628155685.92.0.388588860394.issue44837@roundup.psfhosted.org>
2021-08-05 09:28:05steven.dapranolinkissue44837 messages
2021-08-05 09:28:05steven.dapranocreate