More TAB -> space replacements.
authorW. Trevor King <wking@drexel.edu>
Wed, 24 Nov 2010 19:36:13 +0000 (14:36 -0500)
committerW. Trevor King <wking@drexel.edu>
Wed, 24 Nov 2010 19:36:13 +0000 (14:36 -0500)
posts/Gentoo_overlay.mdwn
posts/MPD_playlist_duration.mdwn
posts/Splittable_kwargs.mdwn

index a3a5c3a2826d56cc5ede59b1f0ee642e08be2d28..9fd2bf8fbdfc3fa6b4555dc98e959086a78570ea 100644 (file)
@@ -21,7 +21,7 @@ personal `layman.xml`).  The overlay is a fairly strange mix:
   ([Gentoo 65200](http://bugs.gentoo.org/65200))
 - media-sound/abcmidi
   ([Gentoo 76017](http://bugs.gentoo.org/76017),
-        also in the [Sunrise overlay][])
+   also in the [Sunrise overlay][])
 - sci-physics/hooke
   (my branch of the [[Hooke]] [[force spectroscopy]] analyzer)
 - sci-physics/sawsim
index e08180cca174b6b9fc4d622c9864e98c1b85cc99..dc38dae00a4e3a5706f5a57cfedb6fb3919e9cbd 100644 (file)
@@ -9,7 +9,7 @@ playlist, and searching around brought me to Repolho's [post][] which
 I've condensed to:
 
     $ mpc --format '%time%' playlist | awk -F ':' 'BEGIN{t=0} {t+=$1*60+$2} END{print strftime("%j %H:%M:%S", t, 1)}'
-               001 10:48:35
+    001 10:48:35
 
 Note that, unfortunately, `%j` returns the day of the year in the
 range `[001,366]`, so an empty playlist would return `001 00:00:00`,
index d41d30efa35f5e38fc070be5f56df2b96187aff7..c5aebef24c99a2853434edd30d72fd0961e71518 100644 (file)
@@ -55,7 +55,7 @@ example becomes
     ...     return b
     >>> @splittableKwargsFunction(A,B)
     >>> def C(**kwargs):
-    ...            akw,bkw = C._splitargs(C, kwargs)
+    ...     akw,bkw = C._splitargs(C, kwargs)
     ...     return A(**bkw)+B(**akw)
     >>> C(a=3,b=4)
     7