fixed typing mistakes

This commit is contained in:
freddii 2020-12-28 21:15:24 +01:00
parent d25b37d2ce
commit fd52e8c481
6 changed files with 7 additions and 7 deletions

View File

@ -115,7 +115,7 @@ two functions: one for copying and one for pasting.
Returns the newly created item or element
```
To serialize the copied elements and deserialize them again, there are two functions avaiable:
To serialize the copied elements and deserialize them again, there are two functions available:
```eval_rst
.. function:: gaphor.diagram.copypaste.serialize(value)

View File

@ -74,7 +74,7 @@ of CSS. Below you'll find a summary of all CSS features supported by Gaphor.
```eval_rst
============================= ============================
``*`` All items on the diagram, including the diagram itself.
``node component`` Any component item which is a decendant of a node.
``node component`` Any component item which is a descendant of a node.
``node > component`` A component item which is a child of a node.
``generaliation[subject]`` A generalization item with a subject present.
``class[name=Foo]`` A class with name "Foo".

View File

@ -19,7 +19,7 @@ BODY = 20
class ActorItem(ElementPresentation, Classified):
"""Actor item is a classifier in icon mode.
Maybe it should be possible to switch to comparment mode in the
Maybe it should be possible to switch to compartment mode in the
future.
"""

View File

@ -38,7 +38,7 @@ class Layout:
self.set_alignment(text_align)
def set(self, text=None, font=None, width=None, text_align=None):
# Since text expressions can return False, we should also accomodate for that
# Since text expressions can return False, we should also accommodate for that
if text not in (None, False):
self.set_text(text)
if font:

View File

@ -76,7 +76,7 @@ This pane can be hidden by clicking the pensil icon in the header.
<b>Tip:</b> Most elements in the toolbox have a keyboard shortcut (e.g. "c" for Class).
Tool selection only works from the diagram. If a tool does not get selected, click on the diagram once (so it's focused) and then hit the shortcut key.
<b>Tip:</b> To search for an element in the tree view, select an element in the tree view and start typing. A search box will automaticaly appear.
<b>Tip:</b> To search for an element in the tree view, select an element in the tree view and start typing. A search box will automatically appear.
</property>
<property name="use_markup">True</property>
<property name="wrap">True</property>

View File

@ -144,13 +144,13 @@ Function custom_gui_init
; if it returns success proceede, otherwise abort the
; installer (uninstall aborted by user for example)
ExecWait '"$uninst_bin_temp" _?=$INSTDIR' $R1
; uninstall suceeded, since the uninstall.exe is still there
; uninstall succeeded, since the uninstall.exe is still there
; goto rm_instdir as well
StrCmp $R1 0 rm_instdir
; uninstall failed
Abort
rm_instdir:
; either the uninstaller was sucessfull or
; either the uninstaller was successful or
; the uninstaller.exe wasn't found
RMDir /r "$INSTDIR"
do_continue: