Skip to content

Commit 2fbfd39

Browse files
committed
docs
1 parent 9dfda49 commit 2fbfd39

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/FPDF.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
##Doc
66

7-
###Creating a new PDF-Document
7+
###Creating a FPDF-Document
88

99
var doc = new FPDF.Doc();
1010

@@ -47,7 +47,7 @@ Inside of `header`-, `footer`-method in `Page`, the `this`-statement points to t
4747

4848

4949

50-
###Instance Methods
50+
###Instance methods
5151
- **css(** *(object)* **styles)**
5252
Sets style properties for the whole document. Each element in this document will inherit theese values excluding margin, padding, etc. (similar like in HTML/CSS)
5353

@@ -77,7 +77,7 @@ Appends an Element to the document. (The same way you know it form jQuery.)
7777
Sets the creator. (e.g. The name of your application.)
7878

7979

80-
####Example for instance Methods
80+
####Example for using instance methods of doc
8181

8282
// Create the instance
8383
var doc = new FPDF.Doc();
@@ -116,7 +116,7 @@ Creating elements is done with: `FPDF('div')` e.g.
116116
Like seen in the top `FPDF('div')` has a `text()`-method. with this you can set Text to your document. But you can also add other elements with `append( element )`.
117117

118118

119-
###FPDF('Flexbox')
119+
###FPDF('flexbox')
120120
Each element you add to a `FPDF('Flexbox')` will be a column.
121121

122122
var doc = new FPDF.Doc();

0 commit comments

Comments
 (0)