diff --git a/docs/TinyExpr++ReferenceManual.pdf b/docs/TinyExpr++ReferenceManual.pdf index faca069..e0f81f0 100644 Binary files a/docs/TinyExpr++ReferenceManual.pdf and b/docs/TinyExpr++ReferenceManual.pdf differ diff --git a/docs/building.html b/docs/building.html index c33f502..ee646d2 100644 --- a/docs/building.html +++ b/docs/building.html @@ -280,7 +280,7 @@

6  diff --git a/docs/comments.html b/docs/comments.html index 14d8412..3ffb1c1 100644 --- a/docs/comments.html +++ b/docs/comments.html @@ -314,17 +314,27 @@

5 
/* Returns the p-level of a study if:
-   p-level < 5% AND
-   number of observations was at least 30.
-   Otherwise, NaN is returned. */
-
-IF(// Review the results from the analysis
-   AND(P_LEVEL < .05, N_OBS >= 30),
-   // ...and return the p-level if acceptable
-   P_LEVEL,
-   // or NaN if not
-   NAN)
+
/* Returns the p-level of a study if:
+   p-level < 5% AND
+   number of observations was at least 30.
+1   Otherwise, NaN is returned. */
+
+IF(// Review the results from the analysis
+   AND(P_LEVEL < .05, N_OBS >= 30),
+   // ...and return the p-level if acceptable
+2   P_LEVEL,
+   // or NaN if not
+   NAN)
+
+
1
+
+Comment that can span multiple lines. +
+
2
+
+Single line comment. +
+