Skip to content

Commit

Permalink
some typos fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
FrogTheFrog committed Aug 13, 2017
1 parent 03c300d commit 242acd2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/shared/lang/english/markdown/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Read this if you're still having trouble with configuration. For most examples t

## So, how do I setup user's glob?

First, let's analyze **File1**. Its full path is `C:/ROMs/Kingdom Hearts/game.iso`. Since our **ROMs directory** is `C:/ROMs`, we can just remove it **File1**'s path.
First, let's analyze **File1**. Its full path is `C:/ROMs/Kingdom Hearts/game.iso`. Since our **ROMs directory** is `C:/ROMs`, we can just remove it from **File1**'s path.

We end up with `Kingdom Hearts/game.iso`. It obvious for us that `Kingdom Hearts` is the title, however parser is dumber than you -- you must specify path portion which contains the title by replacing `Kingdom Hearts` with `${title}`.

Expand Down Expand Up @@ -97,7 +97,7 @@ and only files with `nes` and `NES` will be matched. If you're feeling fancy or
{*,*/*}/*/${title}.@([nN][eE][sS])
```

Now parser is can match any combination and is effectively case-insensitive. Technically, the following glob will work too, but the one above looks better.
Now parser can match any combination and is effectively case-insensitive. Technically, the following glob will work too, but the one above looks better.

```
{*,*/*}/*/${title}.[nN][eE][sS]
Expand Down

0 comments on commit 242acd2

Please sign in to comment.