Merge pull request #3047 from mbrubeck/doc-comment

Fix rustdoc comment syntax
This commit is contained in:
Josh Matthews 2014-08-07 00:31:11 -04:00
commit 69fc99e868
3 changed files with 5 additions and 5 deletions

View file

@ -3,9 +3,9 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
//! Shaper encapsulates a specific shaper, such as Harfbuzz, //! Shaper encapsulates a specific shaper, such as Harfbuzz,
/// Uniscribe, Pango, or Coretext. //! Uniscribe, Pango, or Coretext.
/// //!
/// Currently, only harfbuzz bindings are implemented. //! Currently, only harfbuzz bindings are implemented.
use text::glyph::GlyphStore; use text::glyph::GlyphStore;

View file

@ -3,7 +3,7 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
//! The layout task. Performs layout on the DOM, builds display lists and sends them to be //! The layout task. Performs layout on the DOM, builds display lists and sends them to be
/// rendered. //! rendered.
use css::matching::{ApplicableDeclarations, ApplicableDeclarationsCache, MatchMethods}; use css::matching::{ApplicableDeclarations, ApplicableDeclarationsCache, MatchMethods};
use css::matching::{StyleSharingCandidateCache}; use css::matching::{StyleSharingCandidateCache};

View file

@ -3,7 +3,7 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
//! The high-level interface from script to constellation. Using this abstract interface helps reduce //! The high-level interface from script to constellation. Using this abstract interface helps reduce
/// coupling between these two components //! coupling between these two components
use geom::rect::Rect; use geom::rect::Rect;
use geom::size::TypedSize2D; use geom::size::TypedSize2D;