Skip to content
This repository was archived by the owner on Mar 3, 2022. It is now read-only.

Commit 5051d86

Browse files
committed
spelling: update
1 parent 6cc7aae commit 5051d86

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

choropleth.install

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@
99
* Implements hook_install().
1010
*/
1111
function choropleth_install() {
12-
choropleth_udpate_existing_fields();
12+
choropleth_update_existing_fields();
1313
}
1414

1515
/**
1616
* Checks for current implementations of recline and adds additional columns.
1717
*/
18-
function choropleth_udpate_existing_fields() {
18+
function choropleth_update_existing_fields() {
1919
$fields = field_info_fields();
2020
foreach ($fields as $field_name => $field) {
2121
if ($field['type'] == 'recline_field' && $field['storage']['type'] == 'field_sql_storage') {
@@ -69,7 +69,7 @@ function choropleth_udpate_existing_fields() {
6969
*/
7070
function choropleth_update_7001(&$sandbox) {
7171
$ret = array();
72-
choropleth_udpate_existing_fields();
72+
choropleth_update_existing_fields();
7373
return $ret;
7474
}
7575

@@ -78,7 +78,7 @@ function choropleth_update_7001(&$sandbox) {
7878
*/
7979
function choropleth_update_7002(&$sandbox) {
8080
$ret = array();
81-
choropleth_udpate_existing_fields();
81+
choropleth_update_existing_fields();
8282
return $ret;
8383
}
8484

@@ -87,6 +87,6 @@ function choropleth_update_7002(&$sandbox) {
8787
*/
8888
function choropleth_update_7003(&$sandbox) {
8989
$ret = array();
90-
choropleth_udpate_existing_fields();
90+
choropleth_update_existing_fields();
9191
return $ret;
9292
}

0 commit comments

Comments
 (0)