From ccaa909a6711fb9c2fdd34eddbf22ae99d23620a Mon Sep 17 00:00:00 2001 From: Josh Goldberg Date: Fri, 24 Apr 2015 12:28:39 -0400 Subject: [PATCH] Add Travis CI badge to README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 49c2831..8aa3b8f 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# ObjectMakr +# ObjectMakr [![Build Status](https://travis-ci.org/FullScreenShenanigans/ObjectMakr.svg?branch=master)](https://travis-ci.org/FullScreenShenanigans/ObjectMakr) An Abstract Factory for JavaScript classes that automates the process of setting constructors' prototypal inheritance. A sketch of class inheritance and a @@ -15,7 +15,7 @@ and returns it. If desired, any settings are applied to it. * **getFunction(***`type`***)** - Returns the constructor of the given class. -* **getFunctions() - Returns the constructor of the given class. +* **getFunctions()** - Returns the constructor of the given class. #### Important Member Variables @@ -100,4 +100,4 @@ to be run when made. console.log(ObjectMaker.make("Square")); // Square {constructor: function... console.log(ObjectMaker.make("Square").area); // "width ^ 2" console.log(ObjectMaker.getFunction("Square")); // function Square() {} - ``` \ No newline at end of file + ```