Skip to content
This repository was archived by the owner on Nov 19, 2018. It is now read-only.

Commit 20f63ce

Browse files
SimoNonnisrnicholus
authored andcommitted
Fix some typos in README file (#126)
* Fix typo * 'Correct some typo'
1 parent 438ca3d commit 20f63ce

1 file changed

Lines changed: 11 additions & 12 deletions

File tree

README.md

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Makes using [Fine Uploader](http://fineuploader.com) in a React app simple. Drop
2121

2222
### Overview
2323

24-
React Fine Uploader makes using Fine Uploader and all of its unique features very simple in a React-based project. Thie library provides useful resources that can be divided into three sections:
24+
React Fine Uploader makes using Fine Uploader and all of its unique features very simple in a React-based project. This library provides useful resources that can be divided into three sections:
2525

2626
#### Individual focused components (like `<Thumbnail>` and `<ProgressBar>`).
2727

@@ -30,7 +30,7 @@ These allow you to easily build a highly customizable and powerful UI for your u
3030

3131
#### Higher-order components (like `<Gallery>`)
3232

33-
These combine many focused components that provide style (which can be adjusted via your own stylesheet) and enhanced UI-specific features. These components are essentially "turn-key", which means that you can get a fully functional upload widget up and running in your project with a few lines of code. Keep in mind that you of course still need a server to handle the requests sent by Fine Uploader and to server up the JavaScript and CSS files.
33+
These combine many focused components that provide style (which can be adjusted via your own stylesheet) and enhanced UI-specific features. These components are essentially "turn-key", which means that you can get a fully functional upload widget up and running in your project with a few lines of code. Keep in mind that of course you still need a server to handle the requests sent by Fine Uploader and to server up the JavaScript and CSS files.
3434

3535
#### Wrapper classes
3636

@@ -186,7 +186,7 @@ import CancelButton from 'react-fine-uploader/cancel-button'
186186
import FineUploaderTraditional from 'fine-uploader-wrappers'
187187
import Thumbnail from 'react-fine-uploader/thumbnail'
188188

189-
const uploader = new FineUploader({
189+
const uploader = new FineUploaderTraditional({
190190
options: {
191191
request: {
192192
endpoint: 'my/upload/endpoint'
@@ -272,7 +272,7 @@ import DeleteButton from 'react-fine-uploader/delete-button'
272272
import FineUploaderTraditional from 'fine-uploader-wrappers'
273273
import Thumbnail from 'react-fine-uploader/thumbnail'
274274

275-
const uploader = new FineUploader({
275+
const uploader = new FineUploaderTraditional({
276276
options: {
277277
deleteFile: {
278278
enabled: true,
@@ -451,7 +451,7 @@ import React, { Component } from 'react'
451451
import FineUploaderTraditional from 'fine-uploader-wrappers'
452452
import Filename from 'react-fine-uploader/filename'
453453

454-
const uploader = new FineUploader({
454+
const uploader = new FineUploaderTraditional({
455455
options: {
456456
request: {
457457
endpoint: 'my/upload/endpoint'
@@ -520,7 +520,7 @@ import React, { Component } from 'react'
520520
import FineUploaderTraditional from 'fine-uploader-wrappers'
521521
import Filesize from 'react-fine-uploader/filesize'
522522

523-
const uploader = new FineUploader({
523+
const uploader = new FineUploaderTraditional({
524524
options: {
525525
request: {
526526
endpoint: 'my/upload/endpoint'
@@ -602,7 +602,7 @@ import FineUploaderTraditional from 'fine-uploader-wrappers'
602602
import PauseResumeButton from 'react-fine-uploader/pause-resume-button'
603603
import Thumbnail from 'react-fine-uploader/thumbnail'
604604

605-
const uploader = new FineUploader({
605+
const uploader = new FineUploaderTraditional({
606606
options: {
607607
request: {
608608
endpoint: 'my/upload/endpoint'
@@ -696,7 +696,7 @@ import FineUploaderTraditional from 'fine-uploader-wrappers'
696696
import RetryButton from 'react-fine-uploader/retry-button'
697697
import Thumbnail from 'react-fine-uploader/thumbnail'
698698

699-
const uploader = new FineUploader({
699+
const uploader = new FineUploaderTraditional({
700700
options: {
701701
request: {
702702
endpoint: 'my/upload/endpoint'
@@ -771,10 +771,10 @@ Note: This assumes you have additional components or code to allow files to actu
771771
import React, { Component } from 'react'
772772

773773
import FineUploaderTraditional from 'fine-uploader-wrappers'
774-
import Status from 'react-fine-uploader/filesize'
774+
import Status from 'react-fine-uploader/status'
775775
import Thumbnail from 'react-fine-uploader/thumbnail'
776776

777-
const uploader = new FineUploader({
777+
const uploader = new FineUploaderTraditional({
778778
options: {
779779
request: {
780780
endpoint: 'my/upload/endpoint'
@@ -845,7 +845,7 @@ import React, { Component } from 'react'
845845
import FineUploaderTraditional from 'fine-uploader-wrappers'
846846
import Thumbnail from 'react-fine-uploader/thumbnail'
847847

848-
const uploader = new FineUploader({
848+
const uploader = new FineUploaderTraditional({
849849
options: {
850850
request: {
851851
endpoint: 'my/upload/endpoint'
@@ -942,4 +942,3 @@ export default class FileListener extends Component {
942942
}
943943
}
944944
```
945-

0 commit comments

Comments
 (0)