Doc: 2 minor corrections in corelib/plugin

Task-number: QTBUG-40362
Change-Id: I4fa4a69c13a60f8c7915b6c9659a4daaae4ecc1a
Reviewed-by: Topi Reiniö <topi.reinio@digia.com>
This commit is contained in:
Nico Vertriest 2014-09-01 13:06:47 +02:00
parent 5e6dc39770
commit f1a8d7dc9b

View File

@ -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.