From 5b8b06cf5275bf03af21edbb9de03994c455b656 Mon Sep 17 00:00:00 2001 From: Kyle Marek-Spartz Date: Sun, 16 Feb 2014 19:31:10 -0600 Subject: [PATCH] TODO note about refactoring classes and method-calls documentation. As a user of the documentation, I found some aspects confusing about this, particularly the operator section. There should be an example of how to define custom operators on the Classes page. --- doc/site/classes.markdown | 2 ++ doc/site/method-calls.markdown | 2 ++ 2 files changed, 4 insertions(+) diff --git a/doc/site/classes.markdown b/doc/site/classes.markdown index a842f75c..58df900a 100644 --- a/doc/site/classes.markdown +++ b/doc/site/classes.markdown @@ -1,5 +1,7 @@ ^title Classes +**TODO: Refactor `method-calls` and `classes` into using and creating classes.** + Every value in Wren is an object, and every object is an instance of a class. Even `true` and `false` are full-featured objects, instances of the `Bool` class. diff --git a/doc/site/method-calls.markdown b/doc/site/method-calls.markdown index 6664d1cf..98ca4185 100644 --- a/doc/site/method-calls.markdown +++ b/doc/site/method-calls.markdown @@ -1,5 +1,7 @@ ^title Method Calls +**TODO: Refactor `method-calls` and `classes` into using and creating classes.** + Wren is object-oriented, so most code consists of method calls. Most of them look like so: