Skip to content

Commit ac88f2a

Browse files
committedJan 21, 2018
Fix some wording and spelling
1 parent 9451f2e commit ac88f2a

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed
 

‎.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Include a few sentences describing the overall goals for this PR (pull request).
88
- [ ] Commit messages are descriptive and explain the rationale for changes
99
- [ ] Commits which fix bugs include `fixes #11111` in the commit message next to the description
1010
- [ ] Commits which add new features are tagged with `[FEATURE]` in the commit message
11-
- [ ] Commits which change the UI or existing user workflows are tagged with `[needs-docs]` in the commit message and containt sufficient information in the commit message to be documented
11+
- [ ] Commits which change the UI or existing user workflows are tagged with `[needs-docs]` in the commit message and contain sufficient information in the commit message to be documented
1212
- [ ] I have read the [QGIS Coding Standards](https://docs.qgis.org/testing/en/docs/developers_guide/codingstandards.html) and this PR complies with them
1313
- [ ] This PR passes all existing unit tests (test results will be reported by travis-ci after opening this PR)
1414
- [ ] New unit tests have been added for core changes

‎python/plugins/processing/ui/DlgScriptEditor.ui

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
</widget>
9696
<widget class="QToolBar" name="toolBar">
9797
<property name="windowTitle">
98-
<string>toolBar</string>
98+
<string>Toolbar</string>
9999
</property>
100100
<attribute name="toolBarArea">
101101
<enum>TopToolBarArea</enum>

‎src/app/qgsoptions.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -735,8 +735,8 @@ QgsOptions::QgsOptions( QWidget *parent, Qt::WindowFlags fl, const QList<QgsOpti
735735
QString scalePaths = mSettings->value( QStringLiteral( "Map/scales" ), PROJECT_SCALES ).toString();
736736
if ( !scalePaths.isEmpty() )
737737
{
738-
const QStringList ScalesList = scalePaths.split( ',' );
739-
for ( const QString &scale : ScalesList )
738+
const QStringList scalesList = scalePaths.split( ',' );
739+
for ( const QString &scale : scalesList )
740740
{
741741
addScaleToScaleList( scale );
742742
}

‎src/customwidgets/qgsfieldcomboboxplugin.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ QString QgsFieldComboBoxPlugin::toolTip() const
7676

7777
QString QgsFieldComboBoxPlugin::whatsThis() const
7878
{
79-
return tr( "A combo box to list the field of a layer." );
79+
return tr( "A combo box to list the fields of a layer." );
8080
}
8181

8282
QString QgsFieldComboBoxPlugin::domXml() const

‎src/ui/qgspgnewconnectionbase.ui

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@
209209
&lt;body&gt;
210210
&lt;p&gt;When the layer is setup various metadata is required for the PostGIS table. This includes information such as the table row count, geometry type and spatial extents of the data in the geometry column. If the table contains a large number of rows determining this metadata is time consuming.&lt;/p&gt;
211211
&lt;p&gt;By activating this option the following fast table metadata operations are done:&lt;/p&gt;
212-
&lt;p&gt;1) Row count is determined from table statistics obtained from running the PostgreSQL table analyze function.&lt;/p&gt;
212+
&lt;p&gt;1) Row count is determined from results of running the PostgreSQL Analyze function on the table.&lt;/p&gt;
213213
&lt;p&gt;2) Table extents are always determined with the estimated_extent PostGIS function even if a layer filter is applied.&lt;/p&gt;
214214
&lt;p&gt;3) If the table geometry type is unknown and is not exclusively taken from the geometry_columns table, then it is determined from the first 100 non-null geometry rows in the table.&lt;/p&gt;
215215
&lt;/body&gt;

0 commit comments

Comments
 (0)
Please sign in to comment.