diff options
| author | luz.paz <luzpaz@users.noreply.github.com> | 2018-02-07 23:08:52 +0000 |
|---|---|---|
| committer | Eduard Braun <eduard.braun2@gmx.de> | 2018-02-10 14:13:06 +0000 |
| commit | d677be7ba2cbc99dbe3385a0df1dd26c5bed6b8e (patch) | |
| tree | d36617c75f27083e26896269bdbf4a165f150e05 | |
| parent | Copy numpy import error message over from measure.py (no new strings) (diff) | |
| download | inkscape-d677be7ba2cbc99dbe3385a0df1dd26c5bed6b8e.tar.gz inkscape-d677be7ba2cbc99dbe3385a0df1dd26c5bed6b8e.zip | |
Misc. typos
Found via `codespell`
| -rw-r--r-- | share/extensions/empty_generic.inx | 2 | ||||
| -rwxr-xr-x | share/extensions/polyhedron_3d.py | 2 | ||||
| -rw-r--r-- | src/extension/dependency.cpp | 2 | ||||
| -rw-r--r-- | src/extension/effect.h | 2 | ||||
| -rw-r--r-- | src/prefix.h | 2 | ||||
| -rw-r--r-- | src/splivarot.cpp | 4 | ||||
| -rw-r--r-- | src/svg-profile.h | 2 | ||||
| -rw-r--r-- | src/verbs.cpp | 2 |
8 files changed, 9 insertions, 9 deletions
diff --git a/share/extensions/empty_generic.inx b/share/extensions/empty_generic.inx index 4a89dfec5..af72a7c5a 100644 --- a/share/extensions/empty_generic.inx +++ b/share/extensions/empty_generic.inx @@ -37,7 +37,7 @@ <inkscape:_templateinfo> <inkscape:_name>Generic canvas...</inkscape:_name> <inkscape:author>Tavmjong Bah</inkscape:author> - <inkscape:_shortdesc>Genric canvas of chosen size.</inkscape:_shortdesc> + <inkscape:_shortdesc>Generic canvas of chosen size.</inkscape:_shortdesc> <inkscape:date>2014-10-09</inkscape:date> <inkscape:_keywords>empty generic canvas</inkscape:_keywords> </inkscape:_templateinfo> diff --git a/share/extensions/polyhedron_3d.py b/share/extensions/polyhedron_3d.py index 4f8462782..cc2e0722f 100755 --- a/share/extensions/polyhedron_3d.py +++ b/share/extensions/polyhedron_3d.py @@ -193,7 +193,7 @@ def get_darkened_colour( (r,g,b), factor): + "%02X" % floor( factor*b ) #make the colour string def make_rotation_log(options): -#makes a string recording the axes and angles of each roation, so an object can be repeated +#makes a string recording the axes and angles of each rotation, so an object can be repeated return options.r1_ax+str('%.2f'%options.r1_ang)+':'+\ options.r2_ax+str('%.2f'%options.r2_ang)+':'+\ options.r3_ax+str('%.2f'%options.r3_ang)+':'+\ diff --git a/src/extension/dependency.cpp b/src/extension/dependency.cpp index b83c5380f..5e843ee11 100644 --- a/src/extension/dependency.cpp +++ b/src/extension/dependency.cpp @@ -104,7 +104,7 @@ Dependency::~Dependency (void) \return Whether or not the dependency passes. This function depends largely on all of the enums. The first level - that is evaluted is the \c _type. + that is evaluated is the \c _type. If the type is \c TYPE_EXTENSION then the id for the extension is looked up in the database. If the extension is found, and it is diff --git a/src/extension/effect.h b/src/extension/effect.h index 143243a2e..f6eff09b1 100644 --- a/src/extension/effect.h +++ b/src/extension/effect.h @@ -45,7 +45,7 @@ class Effect : public Extension { void merge_menu (Inkscape::XML::Node * base, Inkscape::XML::Node * start, Inkscape::XML::Node * patern, Inkscape::XML::Node * mergee); /** \brief This is the verb type that is used for all effect's verbs. - It provides convience functions and maintains a pointer + It provides convenience functions and maintains a pointer back to the effect that created it. */ class EffectVerb : public Inkscape::Verb { private: diff --git a/src/prefix.h b/src/prefix.h index bdf3b6df4..ac3138ae6 100644 --- a/src/prefix.h +++ b/src/prefix.h @@ -44,7 +44,7 @@ extern "C" { #define br_prepend_prefix BR_NAMESPACE(br_prepend_prefix) #ifndef BR_NO_MACROS - /* These are convience macros that replace the ones usually used + /* These are convenience macros that replace the ones usually used in Autoconf/Automake projects */ #undef SELFPATH #undef PREFIX diff --git a/src/splivarot.cpp b/src/splivarot.cpp index 7daaefdfa..cbb51f312 100644 --- a/src/splivarot.cpp +++ b/src/splivarot.cpp @@ -281,7 +281,7 @@ sp_pathvector_boolop(Geom::PathVector const &pathva, Geom::PathVector const &pat free(toCut); } else if ( bop == bool_op_cut ) { // il faut appeler pour desallouer PointData (pas vital, mais bon) - // the Booleen() function did not deallocated the point_data array in theShape, because this + // the Booleen() function did not deallocate the point_data array in theShape, because this // function needs it. // this function uses the point_data to get the winding number of each path (ie: is a hole or not) // for later reconstruction in objects, you also need to extract which path is parent of holes (nesting info) @@ -659,7 +659,7 @@ BoolOpErrors Inkscape::ObjectSet::pathBoolOp(bool_op bop, const bool skip_undo, free(toCut); } else if ( bop == bool_op_cut ) { // il faut appeler pour desallouer PointData (pas vital, mais bon) - // the Booleen() function did not deallocated the point_data array in theShape, because this + // the Booleen() function did not deallocate the point_data array in theShape, because this // function needs it. // this function uses the point_data to get the winding number of each path (ie: is a hole or not) // for later reconstruction in objects, you also need to extract which path is parent of holes (nesting info) diff --git a/src/svg-profile.h b/src/svg-profile.h index 0baaf08e5..f312662d2 100644 --- a/src/svg-profile.h +++ b/src/svg-profile.h @@ -127,7 +127,7 @@ private: return false; } - /** \brief A convience function to set a particular bit in the + /** \brief A convenience function to set a particular bit in the bitfield This function first find which integer the bit is in by diff --git a/src/verbs.cpp b/src/verbs.cpp index 38eff98ea..0e57063dc 100644 --- a/src/verbs.cpp +++ b/src/verbs.cpp @@ -575,7 +575,7 @@ SPAction *TextVerb::make_action(Inkscape::ActionContext const & context) } /** - * A quick little convience function to make building actions + * A quick little convenience function to make building actions * a little bit easier. * * This function does a couple of things. The most obvious is that |
