summaryrefslogtreecommitdiffstats
path: root/src/corelib
diff options
context:
space:
mode:
authorNico Vertriest <nico.vertriest@digia.com>2014-09-01 13:06:47 +0200
committerNico Vertriest <nico.vertriest@digia.com>2014-09-25 11:52:38 +0200
commitf1a8d7dc9b15ac975ae63618a43c65ab21e4d5b0 (patch)
treed7df07cc03ef227f1ca197e135b95bf051d5d3fb /src/corelib
parent5e6dc39770b22add23fafd7d1b07063e02a7907e (diff)
Doc: 2 minor corrections in corelib/plugin
Task-number: QTBUG-40362 Change-Id: I4fa4a69c13a60f8c7915b6c9659a4daaae4ecc1a Reviewed-by: Topi Reiniƶ <topi.reinio@digia.com>
Diffstat (limited to 'src/corelib')
-rw-r--r--src/corelib/plugin/qlibrary.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/corelib/plugin/qlibrary.cpp b/src/corelib/plugin/qlibrary.cpp
index 40eacb32a1..832ee250c7 100644
--- a/src/corelib/plugin/qlibrary.cpp
+++ b/src/corelib/plugin/qlibrary.cpp
@@ -896,7 +896,7 @@ QLibrary::~QLibrary()
suffix (see isLibrary()).
When loading the library, QLibrary searches in all system-specific
- library locations (e.g. \c LD_LIBRARY_PATH on Unix), unless the
+ library locations (for example, \c LD_LIBRARY_PATH on Unix), unless the
file name has an absolute path. After loading the library
successfully, fileName() returns the fully-qualified file name of
the library, including the full path to the library if one was given
@@ -1073,7 +1073,7 @@ QString QLibrary::errorString() const
You can give some hints on how the symbols are resolved. Usually,
the symbols are not resolved at load time, but resolved lazily,
- (that is, when resolve() is called). If you set the loadHint to
+ (that is, when resolve() is called). If you set the loadHints to
ResolveAllSymbolsHint, then all symbols will be resolved at load time
if the platform supports it.