Skip to content

Commit

Permalink
Merge pull request #1236 from dsenalik/20211118_typos
Browse files Browse the repository at this point in the history
20211118 Corrections of several typos
  • Loading branch information
spficklin committed Nov 22, 2021
2 parents 48cd174 + 6dc6dfc commit ebfde28
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tripal/tripal",
"description": "Tripal is an toolkit to facilitate construction of online genomic, genetic (and other biological) websites.",
"description": "Tripal is a toolkit to facilitate construction of online genomic, genetic (and other biological) websites.",
"require-dev": {
"doctrine/instantiator": "1.0.*",
"statonlab/tripal-test-suite": "1.*"
Expand Down
2 changes: 1 addition & 1 deletion tripal/api/tripal.entities.api.inc
Original file line number Diff line number Diff line change
Expand Up @@ -1529,7 +1529,7 @@ function tripal_get_bundle_details($bundle_name) {
];

// Iterate through each field and provide a description of it and
// it's sub elements.
// its sub elements.
foreach ($instances as $instance) {
// Skip deleted fields.
if ($instance['deleted']) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class TripalTabDownloader extends TripalFieldDownloader {
/**
* A more verbose label that better describes the formatter.
*/
static public $full_label = 'Tab delimeted';
static public $full_label = 'Tab delimited';

/**
* Indicates the default extension for the outputfile.
Expand Down
2 changes: 1 addition & 1 deletion tripal/tripal.info
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name = Tripal
description = Tripal is an toolkit to facilitate construction of online genomic, genetic (and other biological) websites.
description = Tripal is a toolkit to facilitate construction of online genomic, genetic (and other biological) websites.
core = 7.x
project = tripal
package = Tripal
Expand Down
2 changes: 1 addition & 1 deletion tripal_bulk_loader/includes/tripal_bulk_loader.loader.inc
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ function tripal_bulk_loader_add_loader_job_form($form, &$form_state, $node) {
if ($node->job_status == 'Loading...') {
drupal_set_message(t("The Loading Summary only updates at the end of each constant set.
Although records may have already been inserted, they won't be available until the
current constant set is full loaded and no errors are encountered.", []), 'warning');
current constant set is fully loaded and no errors are encountered.", []), 'warning');
}

$form['nid'] = [
Expand Down
2 changes: 1 addition & 1 deletion tripal_chado/api/modules/tripal_chado.cv.api.inc
Original file line number Diff line number Diff line change
Expand Up @@ -946,7 +946,7 @@ function chado_insert_cvterm($term, $options = []) {
// can't do an insert or it will violate the constraint in the cvterm table.
// So we'll need to add the record to the cvterm_dbxref table instead.
if ($dbxref->accession != $accession) {
// Get/add the dbxref for his term.
// Get/add the dbxref for this term.
$dbxref_new = chado_insert_dbxref([
'db_id' => $db->db_id,
'accession' => $accession,
Expand Down
2 changes: 1 addition & 1 deletion tripal_chado/api/tripal_chado.query.api.inc
Original file line number Diff line number Diff line change
Expand Up @@ -1762,7 +1762,7 @@ function chado_query($sql, $args = [], $options = []) {
}

// Add an alter hook to allow module developers to change the query right
// before it's executed. Since all queriying of chado by Tripal eventually
// before it's executed. Since all querying of chado by Tripal eventually
// goes through this function, we only need to provide an alter hook at this
// point in order to ensure developers have complete control over the query
// being executed. For example, a module developer might want to remove
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ function tripal_pub_importers_list() {
<li>Create a new importer by clicking the 'New Importer' link above, and after saving it should appear in the list below. Click the
link labeled 'Import Pubs' to schedule a job to import the publications</li>
<li>The first method only performs the import once. However, you can schedule the
importer to run peridically by adding a cron job. </li>
importer to run periodically by adding a cron job. </li>
</ol><br>");

$form = drupal_get_form('tripal_pub_importer_ncbi_api_key_form');
Expand Down
2 changes: 1 addition & 1 deletion tripal_chado/tripal_chado.install
Original file line number Diff line number Diff line change
Expand Up @@ -2034,7 +2034,7 @@ function tripal_chado_update_7338() {
[
'vocabulary' => 'sep',
'label' => 'Protocol',
'term' => ' protocol',
'term' => 'protocol',
'accession' => '00101',
],
[
Expand Down

0 comments on commit ebfde28

Please sign in to comment.