Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1238181

[PATCH] coccinelle: simple_return: fix typos in messages

From Javier Martinez Canillas <javier@osg.samsung.com>
Newsgroups linux.kernel
Subject [PATCH] coccinelle: simple_return: fix typos in messages
Date 2015-10-02 15:10 +0200
Message-ID <qf8g2-4ez-17@gated-at.bofh.it> (permalink)
Organization linux.* mail to news gateway

Show all headers | View raw


All messages have a typo that misspells the word simplified.

Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>

---

 scripts/coccinelle/misc/simple_return.cocci | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/scripts/coccinelle/misc/simple_return.cocci b/scripts/coccinelle/misc/simple_return.cocci
index e8b6313b116f..ad22c5236ff6 100644
--- a/scripts/coccinelle/misc/simple_return.cocci
+++ b/scripts/coccinelle/misc/simple_return.cocci
@@ -134,7 +134,7 @@ p1 << s1.p1;
 q << s2.q;
 @@
 
-msg = "WARNING: end returns can be simpified and declaration on line %s can be dropped" % (q[0].line)
+msg = "WARNING: end returns can be simplified and declaration on line %s can be dropped" % (q[0].line)
 coccilib.report.print_report(p[0],msg)
 cocci.include_match(False)
 
@@ -145,7 +145,7 @@ q << s2.q
 ;
 @@
 
-msg = "WARNING: end returns may be simpified if negative or 0 value and declaration on line %s can be dropped" % (q[0].line)
+msg = "WARNING: end returns may be simplified if negative or 0 value and declaration on line %s can be dropped" % (q[0].line)
 coccilib.report.print_report(p[0],msg)
 cocci.include_match(False)
 
@@ -154,7 +154,7 @@ p << s1.p;
 p1 << s1.p1;
 @@
 
-msg = "WARNING: end returns can be simpified"
+msg = "WARNING: end returns can be simplified"
 coccilib.report.print_report(p[0],msg)
 
 @script:python depends on report@
@@ -162,19 +162,19 @@ p << s1.p;
 p2 << s1.p2;
 @@
 
-msg = "WARNING: end returns can be simpified if negative or 0 value"
+msg = "WARNING: end returns can be simplified if negative or 0 value"
 coccilib.report.print_report(p[0],msg)
 
 @script:python depends on report@
 p << s3.p1;
 @@
 
-msg = "WARNING: end returns can be simpified"
+msg = "WARNING: end returns can be simplified"
 coccilib.report.print_report(p[0],msg)
 
 @script:python depends on report@
 p << s3.p2;
 @@
 
-msg = "WARNING: end returns can be simpified if tested value is negative or 0"
+msg = "WARNING: end returns can be simplified if tested value is negative or 0"
 coccilib.report.print_report(p[0],msg)
-- 
2.4.3

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Back to linux.kernel | Previous | NextNext in thread | Find similar | Unroll thread


Thread

[PATCH] coccinelle: simple_return: fix typos in messages Javier Martinez Canillas <javier@osg.samsung.com> - 2015-10-02 15:10 +0200
  Re: [PATCH] coccinelle: simple_return: fix typos in messages Julia Lawall <julia.lawall@lip6.fr> - 2015-10-03 18:30 +0200

csiph-web