summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRico Antonio Felix <ricoantoniofelix@yahoo.com>2015-06-23 21:48:22 -0400
committerRico Antonio Felix <ricoantoniofelix@yahoo.com>2015-06-23 21:48:22 -0400
commit45b3f8c27c32964c166200379ce5960cb59ec7d1 (patch)
tree2846c8c1acba8a3070cdaef1efd3f1c03e93a835
parent1dd8cc398e82842b94508d943bf188a400ac31fb (diff)
Enhanced documentation for Constant(const char*, std::nullptr_t)
-rw-r--r--include/constant.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/constant.h b/include/constant.h
index b578019..9ff2882 100644
--- a/include/constant.h
+++ b/include/constant.h
@@ -30,10 +30,10 @@ class PHPCPP_EXPORT Constant
{
public:
/**
- * Constructor
- * @param name Constant name
- * @param value Constant value
- * @param size Size of the value (in case of a string)
+ * Constructor to create a constant for a null value
+ *
+ * @param name Constant's name
+ * @param value Constant's value
*/
Constant(const char *name, std::nullptr_t value = nullptr);