Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix broken headings in Markdown files #11

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ The left image shows a graph with only positive values and without curved lines.

Implementing this control into your project is very easy.

#####1) Copy both GraphView.h and GraphView.m into your projet resources.
##### 1) Copy both GraphView.h and GraphView.m into your projet resources.

#####2) In your ViewController.h:
##### 2) In your ViewController.h:


import <UIKit/UIKit.h>
Expand All @@ -28,7 +28,7 @@ Implementing this control into your project is very easy.

@end

#####3) In your ViewController.m:
##### 3) In your ViewController.m:

- (void)viewDidLoad
{
Expand All @@ -46,7 +46,7 @@ Implementing this control into your project is very easy.

Done!

#####To control the graph, use following functions:
##### To control the graph, use following functions:

1) This will display a graph of float values:

Expand Down