Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(326)

Unified Diff: ppapi/cpp/var.h

Issue 7572025: Fixed some basic tag issues (missing /code endings, etc.). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ppapi/cpp/rect.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/cpp/var.h
===================================================================
--- ppapi/cpp/var.h (revision 95419)
+++ ppapi/cpp/var.h (working copy)
@@ -22,11 +22,11 @@
/// A generic type used for passing data types between the module and the page.
class Var {
public:
- /// Special value passed to constructor to make </code>NULL<code>.
+ /// Special value passed to constructor to make <code>NULL</code>.
struct Null {};
/// Default constructor. Creates a <code>Var</code> of type
- /// </code>Undefined</code>.
+ /// <code>Undefined</code>.
Var();
/// A constructor used to create a <code>Var</code> of type <code>Null</code>.
@@ -54,7 +54,7 @@
Var(const std::string& utf8_str); // Must be encoded in UTF-8.
/// PassRef can be used to construct a <code>Var</code> with a
- /// <code>PP_Var</code> when the </code>PP_Var</code>
+ /// <code>PP_Var</code> when the <code>PP_Var</code>
/// already has had its reference count incremented. For example:
/// <code>pp::Var my_var(PassRef(), my_pp_var);</code>
struct PassRef {};
@@ -123,10 +123,10 @@
/// This function determines if this <code>Var</code> is a string value.
///
- /// @return True if this <code>Var </code>is a string, otherwise False.
+ /// @return True if this <code>Var</code> is a string, otherwise False.
bool is_string() const { return var_.type == PP_VARTYPE_STRING; }
- /// This function determines if this </ode>Var</code> is an object.
+ /// This function determines if this <code>Var</code> is an object.
///
/// @return True if this <code>Var</code> is an object, otherwise False.
bool is_object() const { return var_.type == PP_VARTYPE_OBJECT; }
« no previous file with comments | « ppapi/cpp/rect.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698