Skip to content

Commit 697f219

Browse files
author
Raven G. Duran
committed
Corrected Documentation Typos
1 parent 96ca32e commit 697f219

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

documentation.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@ struct node* insertN(struct node *root,int value,struct node *parent);
3232
3333
The two functions are the core in creating a BST like structure.
3434
* newNode function : This function creates a basic node. Paremeters:
35-
** value : The value you want to put to the node.
36-
** parent : The parent of the Node (Can also be NULL).
35+
1. value : The value you want to put to the node.
36+
2. parent : The parent of the Node (Can also be NULL).
3737
* insertN function : This inserts a new node properly into the tree. Parameters:
38-
** root : Pointer to the root of the tree of where to insert the new node.
39-
** value : The value you want to insert.
40-
** parent : The parent of the new node you are inserting. (A bit redundant, but this helps a lot in tracking trees)
38+
1. root : Pointer to the root of the tree of where to insert the new node.
39+
2. value : The value you want to insert.
40+
3. parent : The parent of the new node you are inserting. (A bit redundant, but this helps a lot in tracking trees)
4141
4242
If you want a more thorough explanation of the BST functions,
4343
then you can go to this link: [Binary Search Tree Operations Explanation (Bisaya)](http://pastebin.com/DCkF4JAn)

0 commit comments

Comments
 (0)