patch from Jitse Niesen: fix ascii quick ref matlab operator '
diff --git a/doc/AsciiQuickReference.txt b/doc/AsciiQuickReference.txt
index f51f1e2..d3d4f72 100644
--- a/doc/AsciiQuickReference.txt
+++ b/doc/AsciiQuickReference.txt
@@ -50,8 +50,8 @@
 
  // Views, transpose, etc; all read-write except for .adjoint().
  // Eigen                          // Matlab
- R.adjoint()                       // conj(R')
- R.transpose()                     // R'
+ R.adjoint()                       // R'
+ R.transpose()                     // R.' or conj(R')
  R.diagonal()                      // diag(R)
  x.asDiagonal()                    // diag(x)