adapt profile docs to 5d9d738 📝

This commit is contained in:
Jannis R 2018-07-28 14:55:14 +02:00
parent 96c1df5c3a
commit e20f65823b
No known key found for this signature in database
GPG key ID: 0FE83946296A88A5
5 changed files with 5 additions and 5 deletions

View file

@ -9,7 +9,7 @@ const createClient = require('hafas-client')
const dbProfile = require('hafas-client/p/db')
// create a client with DB profile
const client = createClient(dbProfile)
const client = createClient(dbProfile, 'my-awesome-program')
```

View file

@ -9,7 +9,7 @@ const createClient = require('hafas-client')
const insaProfile = require('hafas-client/p/insa')
// create a client with INSA profile
const client = createClient(insaProfile)
const client = createClient(insaProfile, 'my-awesome-program')
```

View file

@ -9,7 +9,7 @@ const createClient = require('hafas-client')
const nahshProfile = require('hafas-client/p/nahsh')
// create a client with NAH.SH profile
const client = createClient(nahshProfile)
const client = createClient(nahshProfile, 'my-awesome-program')
```

View file

@ -9,7 +9,7 @@ const createClient = require('hafas-client')
const oebbProfile = require('hafas-client/p/oebb')
// create a client with ÖBB profile
const client = createClient(oebbProfile)
const client = createClient(oebbProfile, 'my-awesome-program')
```

View file

@ -9,7 +9,7 @@ const createClient = require('hafas-client')
const vbbProfile = require('hafas-client/p/vbb')
// create a client with VBB profile
const client = createClient(vbbProfile)
const client = createClient(vbbProfile, 'my-awesome-program')
```