Isilon / isilon_sdk_python

Official generated source of the Isilon SDK Python language bindings.
36 stars 33 forks source link

Examples (e.g. for NamespaceApi getacl) use invalid true/false instead of True/False names #29

Open tenortim opened 4 years ago

tenortim commented 4 years ago

Example doc link Capitalization matters.

acl = true # bool | Show access control lists.
nsaccess = true # bool | Indicates that the operation is on the access point instead of the store path. (optional)

should be

acl = True # bool | Show access control lists.
nsaccess = True # bool | Indicates that the operation is on the access point instead of the store path. (optional)