diff --git a/Sound/SC3/UGen/Noise/Unsafe.hs b/Sound/SC3/UGen/Noise/Unsafe.hs
--- a/Sound/SC3/UGen/Noise/Unsafe.hs
+++ b/Sound/SC3/UGen/Noise/Unsafe.hs
@@ -87,6 +87,10 @@
 pinkNoise = liftP N.pinkNoise
 
 -- | Random value in uniform distribution.
+--
+-- > import Sound.SC3.UGen.Unsafe
+-- > import Sound.SC3.UGen.Dot
+-- > draw (rand 0 1 + rand 0 1)
 rand :: UGen -> UGen -> UGen
 rand = liftP2 N.rand
 
@@ -107,5 +111,8 @@
 tWindex = liftP3 N.tWindex
 
 -- | White noise.
+--
+-- > import Sound.SC3.UGen
+-- > draw (whiteNoise AR + whiteNoise AR)
 whiteNoise :: Rate -> UGen
 whiteNoise = liftP N.whiteNoise
diff --git a/hsc3-unsafe.cabal b/hsc3-unsafe.cabal
--- a/hsc3-unsafe.cabal
+++ b/hsc3-unsafe.cabal
@@ -1,10 +1,10 @@
 Name:              hsc3-unsafe
-Version:           0.13
+Version:           0.14
 Synopsis:          Unsafe Haskell SuperCollider
 Description:       Alternate non-deterministic UGen constructors.
 License:           GPL
 Category:          Sound
-Copyright:         (c) Rohan Drape, 2006-2012
+Copyright:         (c) Rohan Drape, 2006-2013
 Author:            Rohan Drape
 Maintainer:        rd@slavepianos.org
 Stability:         Experimental
@@ -17,7 +17,7 @@
 
 Library
   Build-Depends:   base == 4.*,
-                   hsc3 == 0.13.*
+                   hsc3 == 0.14.*
   GHC-Options:     -Wall -fwarn-tabs
   Exposed-modules: Sound.SC3.UGen.Demand.Unsafe
                    Sound.SC3.UGen.FFT.Unsafe
