From 5f19ec207f98d55327cdf5d7a11a033a99798e97 Mon Sep 17 00:00:00 2001
From: Slava Pestov <slava@oberon.internal.stack-effects.com>
Date: Tue, 12 Feb 2008 17:32:26 -0600
Subject: [PATCH] Fix indentation

---
 extra/math/analysis/analysis.factor | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/extra/math/analysis/analysis.factor b/extra/math/analysis/analysis.factor
index 2973d3d3f2..a41281d779 100644
--- a/extra/math/analysis/analysis.factor
+++ b/extra/math/analysis/analysis.factor
@@ -113,7 +113,7 @@ PRIVATE>
 ! http://www.csse.monash.edu.au/~lloyd/tildeAlgDS/Numerical/Stirling/
 
 : stirling-fact ( n -- fact )
-  [ pi 2 * * sqrt ]
-  [ dup e / swap ^ ]
-  [ 12 * recip 1 + ]
-  tri * * ;
+    [ pi 2 * * sqrt ]
+    [ dup e / swap ^ ]
+    [ 12 * recip 1 + ]
+    tri * * ;