Skip to content

Commit a850311

Browse files
committed
Fix various typos
1 parent 33a3796 commit a850311

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

cmake/FindPCSC.cmake

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ if(NOT PCSC_FOUND)
2424

2525
# Additional search paths for Windows if not running in Visual Studio environment
2626
if (WIN32)
27-
# Resolve the ambiguity of using two names for one architechture
27+
# Resolve the ambiguity of using two names for one architecture
2828
if(CMAKE_SYSTEM_PROCESSOR STREQUAL "AMD64" OR CMAKE_SYSTEM_PROCESSOR STREQUAL "x64")
2929
set(ARCH_DIR "x64")
3030
else()

docs/topics/DatabaseOperations.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ image::database_settings.png[]
375375
* *Database name:* This is the default identifier for your database and is shown in the tab bar and title bar (when active). You can change this name as desired.
376376
* *Database description:* Provide some meaningful description for your database.
377377
* *Default username:* Provide a default username for all new entries that you create in this database.
378-
* *Public Databse Metadata:* Here you can set a public (unencrypted) name, icon, and color for your database. This is used on the database unlock screen to help distinguish multiple databases from each other.
378+
* *Public Database Metadata:* Here you can set a public (unencrypted) name, icon, and color for your database. This is used on the database unlock screen to help distinguish multiple databases from each other.
379379
* *Max history items:* This is the maximum number of history items that are stored for each entry. When you set this to 0, no history will be saved. Set this value to a low value to prevent the database from getting too large (we recommend no more than 10).
380380
* *Max. history size:* When the history of an entry gets above this size, it is truncated. For example, this happens when entries have large attachments. Set this value small to prevent the database from getting too large (we recommend 6 MiB).
381381
* *Use recycle bin:* Select this check-box if you want deleted entries to move to the recycle bin instead of being permanently removed. The recycle bin will be created if it does not already exist after your first deletion. To delete entries permanently, you must empty the recycle bin manually.

src/gui/Application.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ Application::Application(int& argc, char** argv)
113113
.toUtf8()
114114
.constData();
115115

116-
// forceably reset the lock file
116+
// forcibly reset the lock file
117117
m_lockFile->removeStaleLockFile();
118118
m_lockFile->tryLock();
119119
// start the listen server

src/gui/dbsettings/DatabaseSettingsWidgetGeneral.ui

+2-2
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@
125125
<item row="0" column="1">
126126
<widget class="QLineEdit" name="dbPublicName">
127127
<property name="toolTip">
128-
<string>Publically visible display name used on the unlock dialog</string>
128+
<string>Publicly visible display name used on the unlock dialog</string>
129129
</property>
130130
<property name="accessibleName">
131131
<string>Database public display name</string>
@@ -150,7 +150,7 @@
150150
</size>
151151
</property>
152152
<property name="toolTip">
153-
<string>Publically visible color used on the unlock dialog</string>
153+
<string>Publicly visible color used on the unlock dialog</string>
154154
</property>
155155
<property name="accessibleName">
156156
<string>Database public display color chooser</string>

src/quickunlock/TouchID.mm

+1-1
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ inline CFMutableDictionaryRef makeDictionary() {
139139
// At least on a Hackintosh the enrolled-check does not work, there LAErrorBiometryNotAvailable gets returned instead of
140140
// LAErrorBiometryNotEnrolled.
141141
//
142-
// Thats kinda unfortunate, because now you cannot know for sure if TouchID hardware is either temporarily unavailable or not present
142+
// That's kinda unfortunate, because now you cannot know for sure if TouchID hardware is either temporarily unavailable or not present
143143
// at all, because LAErrorBiometryNotAvailable is used for both cases.
144144
//
145145
// So to make quick unlock fallbacks possible on these machines you have to try to save the key a second time without this flag, if the

0 commit comments

Comments
 (0)