emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/webpaste 01c2858 261/298: Fix typos


From: ELPA Syncer
Subject: [nongnu] elpa/webpaste 01c2858 261/298: Fix typos
Date: Thu, 9 Dec 2021 19:00:26 -0500 (EST)

branch: elpa/webpaste
commit 01c2858f01efa3d93e3237c17a220866ecb14cb7
Author: Damien Cassou <damien@cassou.me>
Commit: Damien Cassou <damien@cassou.me>

    Fix typos
    
    Typos found with codespell.
---
 CONTRIBUTING.org                       |  4 ++--
 README.org                             |  6 +++---
 tests/unit/test-webpaste-paste-text.el |  2 +-
 webpaste.el                            | 10 +++++-----
 4 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/CONTRIBUTING.org b/CONTRIBUTING.org
index 9ff73ea..7b6e6cf 100644
--- a/CONTRIBUTING.org
+++ b/CONTRIBUTING.org
@@ -43,7 +43,7 @@ If you do changes to comments anywhere, run =M-x checkdoc= in 
that buffer to
 check the documentation style guidelines.
 
 *** Flycheck
-Plase run [[http://www.flycheck.org/][flycheck]] with 
[[https://github.com/purcell/flycheck-package][flycheck-package]] in your 
editor to get hints and
+Please run [[http://www.flycheck.org/][flycheck]] with 
[[https://github.com/purcell/flycheck-package][flycheck-package]] in your 
editor to get hints and
 highlights of errors. Only one error is allowed in each file.
 
 In webpaste.el this allowed error is:
@@ -64,5 +64,5 @@ This is due to the same reasons as above.
 
 *** Tests
 Make sure the tests works, for regular unit tests. Just run =make unit=. If
-you have changed something that might affect providers functionallity or just
+you have changed something that might affect providers functionality or just
 want to make sure all the providers works, you can run =make integration=.
diff --git a/README.org b/README.org
index 7b46b72..3e734fb 100644
--- a/README.org
+++ b/README.org
@@ -8,7 +8,7 @@
 This mode allows to paste whole buffers or parts of buffers to
 pastebin-like services. It supports more than one service and will
 failover if one service fails. More services can easily be added
-over time and prefered services can easily be configured.
+over time and preferred services can easily be configured.
 
 * Table of Contents                                                :TOC_3_gh:
  - [[#webpasteel----paste-text-to-pastebin-like-services][Webpaste.el -- Paste 
text to pastebin-like services]]
@@ -96,10 +96,10 @@ Can also be put in the =:config= section of =use-package= 
the same way as the
 provider definitions above.
 
 ** View recently created pastes
-Webpaste gives you several options to view your succesful paste.
+Webpaste gives you several options to view your successful paste.
 
 *** Send the returned URL to the killring
-This is webpaste's default behavior. After a succesfull paste, the returned URL
+This is webpaste's default behavior. After a successful paste, the returned URL
 from the provider will be sent to the killring. You can disable this with
 
 #+BEGIN_SRC emacs-lisp
diff --git a/tests/unit/test-webpaste-paste-text.el 
b/tests/unit/test-webpaste-paste-text.el
index e70aa72..3d0f204 100644
--- a/tests/unit/test-webpaste-paste-text.el
+++ b/tests/unit/test-webpaste-paste-text.el
@@ -19,7 +19,7 @@
   ;; Don't allow it to try to paste, just fake it
   (spy-on 'webpaste--paste-text-to-provider)
 
-  ;; And let tested list be resetted for each test
+  ;; And let tested list be reset for each test
   (setq webpaste-tested-providers nil))
 
 
diff --git a/webpaste.el b/webpaste.el
index 2dfb174..6be8ace 100644
--- a/webpaste.el
+++ b/webpaste.el
@@ -14,7 +14,7 @@
 ;; This mode allows to paste whole buffers or parts of buffers to
 ;; pastebin-like services.  It supports more than one service and will
 ;; failover if one service fails.  More services can easily be added
-;; over time and prefered services can easily be configured.
+;; over time and preferred services can easily be configured.
 
 ;;; License:
 
@@ -307,7 +307,7 @@ Optional params:
 :post-lang-field-name   Fieldname for defining which language your paste should
                         use to the provider.
 
-:lang-overrides    Alist defining overides for languages for this provider. If
+:lang-overrides    Alist defining overrides for languages for this provider. If
                    a mode is set to nil, it will use fundamental-mode's value 
as
                    fallback. Fundamental-mode's value can also be overridden.
 
@@ -328,11 +328,11 @@ Optional params:
                    sent to the provider.  It should accept named parameters by
                    the names TEXT, POST-FIELD and POST-DATA.  POST-DATA should
                    default to `nil' or empty list.  It also takes the option
-                   LANG-OVERRIDES which is a list that enables overiding of
+                   LANG-OVERRIDES which is a list that enables overriding of
                    `webpaste--default-lang-alist'.
 
                    TEXT contains the data that should be sent.
-                   POST-FIELD cointains the name of the field to be sent.
+                   POST-FIELD contains the name of the field to be sent.
                    POST-DATA contains predefined fields that the provider 
needs."
   ;; If we get a separator sent to the function, append it to the list of
   ;; separators for later use
@@ -467,7 +467,7 @@ different opinions of how the input for their fields should 
look like."
 
 (cl-defun webpaste--paste-text-to-provider (text provider-name)
   "Paste TEXT to specific PROVIDER-NAME.
-This function sends a paste to a spacific provider.  This function is created 
to
+This function sends a paste to a specific provider.  This function is created 
to
 make `webpaste--paste-text' do less magic things all at once."
   (funcall (webpaste--get-provider-by-name provider-name) text))
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]