Skip to content

Commit 00c93f3

Browse files
VLADVLAD
VLAD
authored and
VLAD
committed
2 parents 4b642bf + 2d0547e commit 00c93f3

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ The multithreading .NET library that provides opportunity to fast find files or
44

55
## INSTALLATION
66
1. Download archive with last [release](https://github.com/VladPVS/FastSearchLibrary/releases "Last release")
7-
2. Extract content from some directoty.
8-
3. Copy files .dll and .xml files in directory of your project.
7+
2. Extract content from some directory.
8+
3. Copy .dll and .xml files in directory of your project.
99
4. Add library to your project: Solution Explorer -> Reference -> item AddReference in contex menu -> Browse
1010
5. Add appropriate namespace: `using FastSearchLibrary;`
1111
6. Set target .NET Framework version as 4.5.1 or higher: Project -> <YourProjectName> Properties -> Target framework
@@ -23,7 +23,7 @@ Next classes provide search functionality:
2323
* Classes `FilesSearcher` and `DirectorySearcher` contain static method that allow execute search by different criteria.
2424
These methods return result only when they fully complete execution.
2525
* Methods that have "Fast" ending divide task on several
26-
subtasks that executes simultaneously in thread pool.
26+
subtasks that execute simultaneously in thread pool.
2727
* Methods that have "Async" ending return Task and don't block the called thread.
2828
* First group of methods accepts 2 parameters:
2929
* `string folder` - start search directory
@@ -78,7 +78,7 @@ Next classes provide search functionality:
7878
`StopSearch()` method.
7979
To stop search process possibility one have to use constructor that accept CancellationTokenSource parameter.
8080

81-
Example:
81+
Example:
8282

8383
class Searcher
8484
{
@@ -196,6 +196,6 @@ Next classes provide search functionality:
196196

197197
### SPEED OF WORK
198198
It depends on your computer performance, current loading, but usually `Fast` methods and instance method `StartSearch()` are
199-
performed at least in 2 times faster then simple one-thread recursive algorithm if you use modern multicore processor of course.
199+
performed at least in 2 times faster than simple one-thread recursive algorithm if you use modern multicore processor of course.
200200

201201

0 commit comments

Comments
 (0)