summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorluz.paz <luzpaz@users.noreply.github.com>2018-09-30 18:39:25 +0000
committerluz paz <luzpaz@users.noreply.github.com>2018-10-06 02:05:25 +0000
commit33780c0f28bcda586b1e14de93525a6ab426e4df (patch)
tree341c90061fed79841ea4161b2088d5baa40fe1fa /doc
parentAdd new style register style property for stop color and opacity (diff)
downloadinkscape-33780c0f28bcda586b1e14de93525a6ab426e4df.tar.gz
inkscape-33780c0f28bcda586b1e14de93525a6ab426e4df.zip
Misc. typos
Found via `codespell`
Diffstat (limited to 'doc')
-rw-r--r--doc/architecture.txt2
-rw-r--r--doc/extension_system.txt2
-rw-r--r--doc/extension_system.xml2
3 files changed, 3 insertions, 3 deletions
diff --git a/doc/architecture.txt b/doc/architecture.txt
index 4303a4d2b..961d9605d 100644
--- a/doc/architecture.txt
+++ b/doc/architecture.txt
@@ -353,7 +353,7 @@ SPDocument implements undo and redo stacks and an id-based object
dictionary. Thanks to unique id attributes, the latter can be used to
map from the XML tree back to the object tree. Documents are
themselves registered by the main program metaobject 'Sodipodi', which
-does elementary bookeeping.
+does elementary bookkeeping.
SPDocument performs the basic operations needed for asynchronous
update notification (SPObject ::modified virtual method), and implements
diff --git a/doc/extension_system.txt b/doc/extension_system.txt
index 0fad8f336..72ac28294 100644
--- a/doc/extension_system.txt
+++ b/doc/extension_system.txt
@@ -45,7 +45,7 @@ modified. Please look aton the Inkscape webpage also.
*Script* - A script is a type of extension that is implemented through
an external program that receives and sets SVG data through files and
pipes. This allows Inkscape to use programs that handle SVG but are
- targeted differently, seemlessly inside of Inkscape.
+ targeted differently, seamlessly inside of Inkscape.
*Language Binding* - A special type of plug-in that wraps a scripting
language interpreter such as Perl, Python, Lisp, etc. A user
diff --git a/doc/extension_system.xml b/doc/extension_system.xml
index fee50e904..aa875333d 100644
--- a/doc/extension_system.xml
+++ b/doc/extension_system.xml
@@ -14,7 +14,7 @@
<para><emphasis>Extension Type</emphasis> - Establishes the functional interface that the Extension provides, including the types of messages it handles and what is contained in its data structures.</para>
<para><emphasis>Extension Implementation</emphasis> - Defines how the extension is accessed; i.e. through message passing, pipe/exec calls with commandline arguments, direct function calls, etc.</para>
<para><emphasis>Plug-in</emphasis> - An extension that is implemented through a loadable library. This is a .so file on Unix-like systems or a .dll on Win32. The libraries should not be loaded until they are used.</para>
- <para><emphasis>Script</emphasis> - A script is a type of extension that is implemented through an external program that receives and sets SVG data through files and pipes. This allows Inkscape to use programs that handle SVG but are targeted differently, seemlessly inside of Inkscape.</para>
+ <para><emphasis>Script</emphasis> - A script is a type of extension that is implemented through an external program that receives and sets SVG data through files and pipes. This allows Inkscape to use programs that handle SVG but are targeted differently, seamlessly inside of Inkscape.</para>
<para><emphasis>Language Binding</emphasis> - A special type of plug-in that wraps a scripting language interpreter such as Perl, Python, Lisp, etc. A user interested in programmatic access to Inkscape's internals via one of these languages can install (or create) the relevant Language Binding Plug-in to achieve this.</para>
<para><emphasis>INX</emphasis> - <emphasis>'INkscape eXtension'</emphasis> - The filename extension used for XML metadata files that describe each Inkscape Extension.</para>
<para><emphasis>Internal Extension</emphasis> - A part of the Inkscape codebase which uses the extension system in order to make it more modular. This code is compiled into Inkscape, but appears as an extension to all other code in the codebase.</para>