Skip to content
Snippets Groups Projects
Commit 1f603519 authored by Oliver Sander's avatar Oliver Sander Committed by sander@FU-BERLIN.DE
Browse files

fix documentation errors

[[Imported from SVN: r9093]]
parent 1152c35f
No related branches found
No related tags found
No related merge requests found
...@@ -566,9 +566,7 @@ public: ...@@ -566,9 +566,7 @@ public:
return data_; return data_;
} }
/** \brief Compute an orthonormal basis of the tangent space of S^n. /** \brief Compute an orthonormal basis of the tangent space of H^N.
This basis is of course not globally continuous.
*/ */
Dune::FieldMatrix<T,N,N> orthonormalFrame() const { Dune::FieldMatrix<T,N,N> orthonormalFrame() const {
...@@ -578,9 +576,9 @@ public: ...@@ -578,9 +576,9 @@ public:
} }
/** \brief Write unit vector object to output stream */ /** \brief Write unit vector object to output stream */
friend std::ostream& operator<< (std::ostream& s, const HyperbolicHalfspacePoint& unitVector) friend std::ostream& operator<< (std::ostream& s, const HyperbolicHalfspacePoint& p)
{ {
return s << unitVector.data_; return s << p.data_;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment