Typos etc.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32882 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Richard Heck 2010-01-08 14:38:31 +00:00
parent c615a2eeea
commit eeb1c45edb

View File

@ -160,10 +160,10 @@ docstring complexLabel(Buffer const & buffer,
// We don't currently use the full or forceUCase fields.
string cite_type = asValidLatexCommand(citeType, engine);
if (cite_type[0] == 'C')
//If we were going to use them, this would mean ForceUCase
// If we were going to use them, this would mean ForceUCase
cite_type = string(1, 'c') + cite_type.substr(1);
if (cite_type[cite_type.size() - 1] == '*')
//and this would mean FULL
// and this would mean FULL
cite_type = cite_type.substr(0, cite_type.size() - 1);
docstring before_str;
@ -512,7 +512,7 @@ docstring InsetCitation::xhtml(XHTMLStream & xs, OutputParams const &) const
if (key_list.empty())
return docstring();
// FIXME We shuld do a better job outputing different things for the
// FIXME We should do a better job outputing different things for the
// different citation styles. For now, we use square brackets for every
// case.
xs << "[";