Skip to content

Commit

Permalink
change readme
Browse files Browse the repository at this point in the history
  • Loading branch information
fkollmann committed Feb 17, 2024
1 parent 2a17937 commit 6590f4d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Since this library is basically a 1:1 wrapper of CZMQ, please refer to the [CZMQ
```zig
const zzmq = @import("zzmq");
var s = try zzmq.ZSocket.init(allocator, zzmq.ZSocketType.Pair);
var s = try zzmq.zsocket.ZSocket.init(allocator, zzmq.zsocket.ZSocketType.Pair);
defer s.deinit();
const port = try s.bind("tcp://127.0.0.1:!");
Expand Down Expand Up @@ -59,7 +59,7 @@ exe.linkLibC();

### Installing local dependencies

Installing [CZMQ](http://czmq.zeromq.org) development library version 4.2 or higher is also required:
Installing [CZMQ](http://czmq.zeromq.org) development library version 4.0 or higher is also required:

```sh
# Building on Ubuntu, PoP_OS, ZorinOS, etc.
Expand Down

0 comments on commit 6590f4d

Please sign in to comment.