git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@39224 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Pavel Sanda 2011-07-01 22:31:42 +00:00
parent 51c4b0761e
commit fe5f90b556

View File

@ -51,7 +51,7 @@ def find_end_of_inset(lines, i):
# DO NOT do this:
# document.body[i] = wrap_insert_ert(...)
# wrap_into_ert may returns a multiline string, which should NOT appear
# in document.body. Insetad, do something like this:
# in document.body. Instead, do something like this:
# subst = wrap_inset_ert(...)
# subst = subst.split('\n')
# document.body[i:i+1] = subst