Skip to content

Commit

Permalink
Typo fixes
Browse files Browse the repository at this point in the history
+ added word to spelling.dat
  • Loading branch information
luzpaz authored and nyalldawson committed Dec 30, 2017
1 parent 9f3b3e5 commit 626781a
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion python/core/qgsmaplayerrenderer.sip
Expand Up @@ -19,7 +19,7 @@ thread, so it is necessary to keep all structures required for rendering away
from the original map layer because it may change any time.

Because the data needs to be copied (to avoid the need for locking),
is is highly desirable to use copy-on-write where possible. This way,
it is highly desirable to use copy-on-write where possible. This way,
the overhead of copying (both memory and CPU) will be kept low.
Qt containers and various Qt classes use implicit sharing.

Expand Down
1 change: 1 addition & 0 deletions scripts/spell_check/spelling.dat
Expand Up @@ -438,6 +438,7 @@ altho:although
althought:although
altough:although
alusion:allusion
alway:always
alwasy:always
alwyas:always
amalgomated:amalgamated
Expand Down
2 changes: 1 addition & 1 deletion src/core/pal/labelposition.h
Expand Up @@ -147,7 +147,7 @@ namespace pal
int polygonIntersectionCost( PointSet *polygon ) const;

/**
* Returns true if if any intersection between polygon and position exists.
* Returns true if any intersection between polygon and position exists.
*/
bool intersectsWithPolygon( PointSet *polygon ) const;

Expand Down
2 changes: 1 addition & 1 deletion src/core/qgsapplication.cpp
Expand Up @@ -615,7 +615,7 @@ void QgsApplication::setUITheme( const QString &themeName )
while ( !in.atEnd() )
{
QString line = in.readLine();
// This is is a variable
// This is a variable
if ( line.startsWith( '@' ) )
{
int index = line.indexOf( ':' );
Expand Down
2 changes: 1 addition & 1 deletion src/core/qgsmaplayerrenderer.h
Expand Up @@ -30,7 +30,7 @@ class QgsFeedback;
* from the original map layer because it may change any time.
*
* Because the data needs to be copied (to avoid the need for locking),
* is is highly desirable to use copy-on-write where possible. This way,
* it is highly desirable to use copy-on-write where possible. This way,
* the overhead of copying (both memory and CPU) will be kept low.
* Qt containers and various Qt classes use implicit sharing.
*
Expand Down
2 changes: 1 addition & 1 deletion src/gui/qgsadvanceddigitizingdockwidget.cpp
Expand Up @@ -490,7 +490,7 @@ void QgsAdvancedDigitizingDockWidget::updateCapacity( bool updateUIwithoutChange
mAngleConstraint->setRelative( true );
}

// distance is alway relative
// distance is always relative
mLockDistanceButton->setEnabled( relativeCoordinates );
mDistanceLineEdit->setEnabled( relativeCoordinates );
if ( !relativeCoordinates )
Expand Down

0 comments on commit 626781a

Please sign in to comment.