summaryrefslogtreecommitdiffhomepage
path: root/reason.html.markdown
diff options
context:
space:
mode:
authorDivay Prakash <divayprakash@users.noreply.github.com>2019-08-14 23:59:54 +0530
committerGitHub <noreply@github.com>2019-08-14 23:59:54 +0530
commit72f0ad72c2bdf0c2d575fc43bb049a97dc224604 (patch)
treecdeb539419151a7b046dc16ce664b08c5b955d70 /reason.html.markdown
parent0b5245e2d83453f23e13195ea164a35603c4855a (diff)
parent91f1f4f936f13e7363d832771acb6f5b2cd14879 (diff)
[reason/en] Apply some spelling and ordering suggested (#3605)
[reason/en] Apply some spelling and ordering suggested
Diffstat (limited to 'reason.html.markdown')
-rw-r--r--reason.html.markdown15
1 files changed, 8 insertions, 7 deletions
diff --git a/reason.html.markdown b/reason.html.markdown
index 45633cf5..62d809cf 100644
--- a/reason.html.markdown
+++ b/reason.html.markdown
@@ -2,13 +2,13 @@
language: reason
filename: reason.re
contributors:
- - ["Seth Corker", "https://sethcorker.com"]
+ - ["Seth Corker", "https://sethcorker.com"]
---
Reason is a syntax over OCaml that is easier to get started for programmers who are familiar with C-style syntax like JavaScript. BuckleScript is part of the toolchain which compiles Reason to JavaScript so you can write statically typed code for anywhere that JavaScript runs.
```javascript
-/* Comments start with slash-star, and end with slash-star */
+/* Comments start with slash-star, and end with star-slash */
/*----------------------------------------------
* Variable and function declaration
@@ -18,7 +18,7 @@ Reason is a syntax over OCaml that is easier to get started for programmers who
*/
let x = 5;
-/* - Notice we didn't add a type, Reason will infer it's an int */
+/* - Notice we didn't add a type, Reason will infer x is an int */
/* A function like this, take two arguments and add them together */
let add = (a, b) => a + b;
@@ -27,7 +27,7 @@ let add = (a, b) => a + b;
/*----------------------------------------------
* Type annotation
*----------------------------------------------
- * Types don't need tp be explicitly annotated in most cases but when you need
+ * Types don't need to be explicitly annotated in most cases but when you need
* to, you can add the type after the name
*/
@@ -85,7 +85,7 @@ let lastLetter = 'z';
/* > Boolean */
-/* A boolean be either true or false */
+/* A boolean can be either true or false */
let isLearning = true;
true && false; /* - : bool = false; Logical and */
@@ -445,11 +445,11 @@ switch (driveToTown(evan)) {
};
/* Alternatively, a try block can be used */
+/* - With Reason exceptions can be avoided with optionals and are seldom used */
let messageToEvan =
try (driveToTown(evan)) {
| Under_Age => evan.firstName ++ " is too young to drive!"
};
-/* - With Reason exceptions can be avoided with optionals and are seldom used */
/*----------------------------------------------
* Object
@@ -488,7 +488,7 @@ house#temperature; /* - : float = 22. */
/*----------------------------------------------
* Module
*----------------------------------------------
- * Modules are used to organize your code and provide namespacing,
+ * Modules are used to organize your code and provide namespacing.
* Each file is a module by default
*/
@@ -537,6 +537,7 @@ module SpecializedStaff = {
```
## Further Reading
+
- [Official Reason Docs](https://reasonml.github.io/docs/en/what-and-why)
- [Official BuckleScript Docs](https://bucklescript.github.io/docs/en/what-why)
- [Try Reason](https://reasonml.github.io/en/try)