tripal / tripal_galaxy

This module is for integration of Tripal and a remote Galaxy Instance.
https://tripal-galaxy.readthedocs.io/en/latest/
GNU General Public License v2.0
2 stars 4 forks source link

Documentation typos #151

Closed NicHerndon closed 4 years ago

NicHerndon commented 4 years ago

The documentation at https://tripal-galaxy.readthedocs.io/en/latest/API/api_overview.html has a couple of typos:

  1. In Test if a Galaxy server is accessible (https://tripal-galaxy.readthedocs.io/en/latest/API/api_overview.html#test-if-a-galaxy-server-is-accessible), $is_connected = tripal_galaxy_test_connection(['galaxy_id' => galaxy_id]); should be replaced with $is_connected = tripal_galaxy_test_connection(['galaxy_id' => $galaxy_id]);.
  2. In Option 2: Providing Download Links for Users (https://tripal-galaxy.readthedocs.io/en/latest/API/api_overview.html#option-2-providing-download-links-for-users), $link = l($dataset['name'], $proxy_url) . ' (' . $dataset[file_size] . ')'; should be replaced with $link = l($dataset['name'], $proxy_url) . ' (' . $dataset['file_size'] . ')';.
NicHerndon commented 4 years ago

Fixed typos.