Skip to content

Commit

Permalink
Merge pull request #8 from codyjdalton/improve-docs
Browse files Browse the repository at this point in the history
0.2.0: Improve documentation and update dependencies
  • Loading branch information
codyjdalton committed Nov 15, 2018
2 parents 0dbd5bd + db897a4 commit a27ac8c
Show file tree
Hide file tree
Showing 5 changed files with 344 additions and 1,267 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@

# Typescript Module Seed

One Paragraph of project description goes here
One Paragraph of project description goes here.

## Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

### Installing

A step by step series of examples that tell you have to get a development env running
A step by step series of examples that tell you have to get a development environment running.

Say what the step will be
Say what the step will be:

```
npm i project-name --save
Expand Down
2 changes: 1 addition & 1 deletion lib/modules/services/some.service.spec.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* some.service
* some.service.spec
*/
import { expect } from 'chai';
import { Injector } from 'super-injector';
Expand Down
4 changes: 3 additions & 1 deletion lib/modules/some.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export class SomeModule {
/**
* @property {string} messageText - example text
* Usage:
* this.messageTest
* this.messageText
*/
private messageText: string = '';

Expand All @@ -27,13 +27,15 @@ export class SomeModule {

/**
* @function message (get)
* @return {string} - the message
*/
get message(): string {
return this.messageText;
}

/**
* @function message (set)
* @return {void} - set the message
*/
set message(val: string) {
this.messageText = val;
Expand Down
Loading

0 comments on commit a27ac8c

Please sign in to comment.