Re: [PATCH v2 16/22] git-remote-mediawiki: Modify strings for a better coding-style

2013-06-08 Thread Eric Sunshine
On Sat, Jun 8, 2013 at 4:32 PM, Célestin Matte wrote: > Le 08/06/2013 02:39, Eric Sunshine a écrit : >> On Fri, Jun 7, 2013 at 5:42 PM, Célestin Matte >> wrote: >>> - strings which don't need interpolation are single-quoted for more clarity >>> and >>> slight gain of performance >>> - interpolat

Re: [PATCH v2 16/22] git-remote-mediawiki: Modify strings for a better coding-style

2013-06-08 Thread Célestin Matte
Le 08/06/2013 02:39, Eric Sunshine a écrit : > On Fri, Jun 7, 2013 at 5:42 PM, Célestin Matte > wrote: >> - strings which don't need interpolation are single-quoted for more clarity >> and >> slight gain of performance >> - interpolation is preferred over concatenation in many cases, for more >>

Re: [PATCH v2 16/22] git-remote-mediawiki: Modify strings for a better coding-style

2013-06-07 Thread Eric Sunshine
On Fri, Jun 7, 2013 at 5:42 PM, Célestin Matte wrote: > - strings which don't need interpolation are single-quoted for more clarity > and > slight gain of performance > - interpolation is preferred over concatenation in many cases, for more > clarity > - variables are always used with the ${} op

[PATCH v2 16/22] git-remote-mediawiki: Modify strings for a better coding-style

2013-06-07 Thread Célestin Matte
- strings which don't need interpolation are single-quoted for more clarity and slight gain of performance - interpolation is preferred over concatenation in many cases, for more clarity - variables are always used with the ${} operator inside strings - strings including double-quotes are written w