@cryptotaxi247 / kubo / commits / 24e5f95dc

typo

@RubenKelevra committed Mar 30, 2020 at 15:59 UTC 24e5f95dc46129cf44d0b475144bd594b6cb51cc
1 file changed +14 -14
README.md
+14 -14
@@ -12,7 +12,7 @@
12
13 ## What is IPFS?
14
15 -IPFS is a global, versioned, peer-to-peer filesystem. It combines good ideas from previous systems such Git, BitTorrent, Kademlia, SFS, and the Web. It is like a single bittorrent swarm, exchanging git objects. IPFS provides an interface as simple as the HTTP web, but with permanence built in. You can also mount the world at /ipfs.
15 +IPFS is a global, versioned, peer-to-peer filesystem. It combines good ideas from previous systems such as Git, BitTorrent, Kademlia, SFS, and the Web. It is like a single BitTorrent swarm, exchanging git objects. IPFS provides an interface as simple as the HTTP web, but with permanence built-in. You can also mount the world at /ipfs.
16
17 For more info see: https://docs.ipfs.io/introduction/overview/
18
@@ -64,7 +64,7 @@ The canonical download instructions for IPFS are over at: https://docs.ipfs.io/g
64
65 IPFS can run on most Linux, macOS, and Windows systems. We recommend running it on a machine with at least 2 GB of RAM and 2 CPU cores (go-ipfs is highly parallel). On systems with less memory, it may not be completely stable.
66
67 -If your system is resource constrained, we recommend:
67 +If your system is resource-constrained, we recommend:
68
69 1. Installing OpenSSL and rebuilding go-ipfs manually with `make build GOTAGS=openssl`. See the [download and compile](#download-and-compile-ipfs) section for more information on compiling go-ipfs.
70 2. Initializing your daemon with `ipfs init --profile=lowpower`
@@ -98,7 +98,7 @@ $ sudo pacman -S go-ipfs
98
99 Development version of go-ipfs is also on AUR under
100 [go-ipfs-git](https://aur.archlinux.org/packages/go-ipfs-git/).
101 -You can install it using your favourite AUR Helper or manually from AUR.
101 +You can install it using your favorite AUR Helper or manually from AUR.
102
103 #### Nix
104
@@ -108,7 +108,7 @@ For Linux and MacOSX you can use the purely functional package manager [Nix](htt
108 $ nix-env -i ipfs
109 ```
110
111 -You can also install the Package by using it's attribute name, which is also `ipfs`.
111 +You can also install the Package by using its attribute name, which is also `ipfs`.
112
113 #### Guix
114
@@ -127,7 +127,7 @@ In solus, go-ipfs is available in the main repository as
127 $ sudo eopkg install go-ipfs
128 ```
129
130 -You can also install it trough the Solus software center.
130 +You can also install it through the Solus software center.
131
132 #### Snap
133
@@ -206,7 +206,7 @@ make build GOOS=myTargetOS GOARCH=myTargetArchitecture
206
207 To build go-ipfs with OpenSSL support, append `GOTAGS=openssl` to your `make` invocation. Building with OpenSSL should significantly reduce the background CPU usage on nodes that frequently make or receive new connections.
208
209 -Note: OpenSSL requires CGO support and, by default, CGO is disabled when cross compiling. To cross compile with OpenSSL support, you must:
209 +Note: OpenSSL requires CGO support and, by default, CGO is disabled when cross-compiling. To cross-compile with OpenSSL support, you must:
210
211 1. Install a compiler toolchain for the target platform.
212 2. Set the `CGO_ENABLED=1` environment variable.
@@ -273,11 +273,11 @@ the optional arguments it takes. After initialization is complete, you can use
273
274 Basic proof of 'ipfs working' locally:
275
276 - echo "hello world" > hello
277 - ipfs add hello
278 - # This should output a hash string that looks something like:
279 - # QmT78zSuBmuS4z925WZfrqQ1qHaJ56DQaTfyMUF7F8ff5o
280 - ipfs cat <that hash>
276 + echo "hello world" > hello
277 + ipfs add hello
278 + # This should output a hash string that looks something like:
279 + # QmT78zSuBmuS4z925WZfrqQ1qHaJ56DQaTfyMUF7F8ff5o
280 + ipfs cat <that hash>
281
282 ### Usage
283
@@ -302,7 +302,7 @@ SUBCOMMANDS
302
303 ADVANCED COMMANDS
304 daemon Start a long-running daemon process
305 - mount Mount an ipfs read-only mountpoint
305 + mount Mount an ipfs read-only mount point
306 resolve Resolve any type of name
307 name Publish or resolve IPNS names
308 dns Resolve DNS links
@@ -325,8 +325,8 @@ SUBCOMMANDS
325
326 Use 'ipfs <command> --help' to learn more about each command.
327
328 - ipfs uses a repository in the local file system. By default, the repo is located
329 - at ~/.ipfs. To change the repo location, set the $IPFS_PATH environment variable:
328 + ipfs uses a repository in the local file system. By default, the repo is located at
329 + ~/.ipfs. To change the repo location, set the $IPFS_PATH environment variable:
330
331 export IPFS_PATH=/path/to/ipfsrepo
332 ```