Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
teo-tsirpanis committed Mar 26, 2019
1 parent 025e892 commit 27651be
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@

## Intellectual property assignment

Please see [`LICENSE.md`](./LICENCE.md)
Please see [`LICENSE.md`](./LICENSE.md)
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ The price in EUR (€) is calculated as follows:
where

- `C`: # of cores in total production deployment
- `P`: # of developers owning/working on the software
- `D`: # of developers owning/working on the software

You can load- and stress-test in a test-/staging-environment, for free, as long as that environment never serves production
traffic.
Expand Down
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,8 @@ OR:

## Hello World (C#)

> Be sure to choose Logary version 5 (enable pre-release), or it won't work!
```csharp
using Logary;
using Logary.Configuration;
Expand All @@ -187,6 +189,8 @@ using (var logary = LogaryFactory.New("svc", "host",

## Hello World (F#)

> Be sure to choose Logary version 5 (enable pre-release), or it won't work!
```fsharp
open System
open Logary // normal usage
Expand All @@ -204,12 +208,12 @@ let main argv =
// create a new Logary; save this instance somewhere "global" to your app/service
let logary =
Config.create "Logary.ConsoleApp" "localhost"
|> Config.target (LiterateConsole.create LiterateConsole.empty "console")
|> Config.target (Targets.LiterateConsole.create LiterateConsole.empty "console")
|> Config.build
|> Hopac.Hopac.run
// log something
logger.info (evenX "{userName} logged in" >> setField "user" "haf")
logger.info (eventX "{userName} logged in" >> setField "user" "haf")
mre.Wait()
0
Expand Down

0 comments on commit 27651be

Please sign in to comment.